* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #27ae60;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #229954;
}

.btn-reject {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.btn-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.navbar {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #27ae60;
}

.nav-ad-notice {
    font-size: 11px;
    color: #7f8c8d;
    font-style: italic;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #27ae60;
}

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: #f8f9fa;
}

.hero-left,
.hero-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-left {
    padding: 60px;
    background-color: #2c3e50;
    color: #ffffff;
}

.hero-left h1 {
    font-size: 48px;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-left p {
    font-size: 18px;
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-right {
    position: relative;
    overflow: hidden;
    background-color: #ecf0f1;
}

.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-primary,
.cta-secondary,
.btn-primary,
.btn-secondary,
.btn-service,
.btn-submit {
    display: inline-block;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.cta-primary,
.btn-primary,
.btn-submit {
    background-color: #27ae60;
    color: #ffffff;
}

.cta-primary:hover,
.btn-primary:hover,
.btn-submit:hover {
    background-color: #229954;
    transform: translateY(-2px);
}

.cta-secondary,
.btn-secondary,
.btn-service {
    background-color: transparent;
    color: #27ae60;
    border: 2px solid #27ae60;
}

.cta-secondary:hover,
.btn-secondary:hover,
.btn-service:hover {
    background-color: #27ae60;
    color: #ffffff;
    transform: translateY(-2px);
}

.intro-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.intro-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.intro-image {
    flex: 1;
    background-color: #ecf0f1;
    border-radius: 8px;
    overflow: hidden;
}

.intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.intro-text p {
    font-size: 17px;
    margin-bottom: 16px;
    color: #555;
}

.intro-text a {
    color: #27ae60;
    text-decoration: none;
}

.intro-text a:hover {
    text-decoration: underline;
}

.services-highlight {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.section-header p {
    font-size: 18px;
    color: #555;
}

.service-row {
    max-width: 1200px;
    margin: 0 auto 60px;
    display: flex;
    gap: 60px;
    align-items: center;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.service-row.reverse {
    flex-direction: row-reverse;
}

.service-content {
    flex: 1;
    padding: 40px;
}

.service-content h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.service-content p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #555;
}

.service-benefits {
    list-style: none;
    margin-bottom: 24px;
}

.service-benefits li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: #555;
}

.service-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: #27ae60;
    margin-top: 20px;
}

.service-image {
    flex: 1;
    min-height: 400px;
    background-color: #ecf0f1;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-section {
    padding: 80px 20px;
    background-color: #27ae60;
    color: #ffffff;
    text-align: center;
}

.cta-container h2 {
    font-size: 38px;
    margin-bottom: 16px;
}

.cta-container p {
    font-size: 18px;
    margin-bottom: 32px;
}

.cta-section .cta-secondary {
    background-color: #ffffff;
    color: #27ae60;
    border: none;
}

.cta-section .cta-secondary:hover {
    background-color: #ecf0f1;
}

.contact-form-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.form-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.form-left {
    flex: 1;
}

.form-left h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.form-left p {
    font-size: 17px;
    margin-bottom: 32px;
    color: #555;
}

.form-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-icon {
    width: 32px;
    height: 32px;
    background-color: #27ae60;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.form-right {
    flex: 1;
}

.contact-form {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #27ae60;
}

.trust-section {
    padding: 80px 20px;
    background-color: #2c3e50;
    color: #ffffff;
}

.trust-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.trust-container h2 {
    font-size: 38px;
    margin-bottom: 48px;
}

.trust-stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
}

.stat-item {
    flex: 1;
    min-width: 200px;
}

.stat-number {
    font-size: 56px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 18px;
    color: #ecf0f1;
}

.footer {
    background-color: #1a252f;
    color: #ecf0f1;
    padding: 60px 20px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #27ae60;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 8px;
}

.footer-column a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #27ae60;
}

.references {
    font-size: 12px;
    line-height: 1.6;
    padding-left: 20px;
}

.references li {
    margin-bottom: 12px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    text-align: center;
}

.disclaimer {
    font-size: 12px;
    line-height: 1.6;
    color: #95a5a6;
    margin-bottom: 16px;
    text-align: left;
}

.footer-bottom p:last-child {
    font-size: 14px;
    color: #95a5a6;
}

.page-hero {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.page-hero-content p {
    font-size: 20px;
    color: #ecf0f1;
}

.about-story {
    padding: 80px 20px;
    background-color: #ffffff;
}

.story-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.story-content {
    flex: 1.2;
}

.story-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.story-content p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #555;
    line-height: 1.8;
}

.story-image {
    flex: 1;
    background-color: #ecf0f1;
    border-radius: 8px;
    overflow: hidden;
    min-height: 400px;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.values-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.values-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 48px;
    color: #2c3e50;
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.value-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #27ae60;
}

.value-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

.expertise-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.expertise-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.expertise-image {
    flex: 1;
    background-color: #ecf0f1;
    border-radius: 8px;
    overflow: hidden;
    min-height: 400px;
}

.expertise-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.expertise-content {
    flex: 1;
}

.expertise-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.expertise-content p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #555;
    line-height: 1.8;
}

.expertise-content a {
    color: #27ae60;
    text-decoration: none;
}

.expertise-content a:hover {
    text-decoration: underline;
}

.approach-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.approach-container {
    max-width: 1200px;
    margin: 0 auto;
}

.approach-container h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 48px;
    color: #2c3e50;
}

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.step-item {
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    gap: 24px;
}

.step-number {
    font-size: 36px;
    font-weight: 700;
    color: #27ae60;
    min-width: 60px;
}

.step-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.step-item p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

.services-detailed {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.service-detail-card {
    max-width: 1200px;
    margin: 0 auto 60px;
    display: flex;
    gap: 60px;
    align-items: flex-start;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.service-detail-card.reverse {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 1;
    background-color: #ecf0f1;
    min-height: 500px;
    position: relative;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-detail-content {
    flex: 1;
    padding: 40px;
}

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.service-intro {
    font-size: 17px;
    color: #555;
    margin-bottom: 32px;
    line-height: 1.7;
}

.service-detail-content h3 {
    font-size: 22px;
    margin-bottom: 16px;
    margin-top: 24px;
    color: #2c3e50;
}

.service-list {
    list-style: none;
    margin-bottom: 24px;
}

.service-list li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: #555;
}

.service-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
    font-size: 20px;
}

.service-detail-price {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 32px;
    margin-bottom: 20px;
}

.price-label {
    font-size: 16px;
    color: #555;
}

.price-value {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
}

.comparison-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.comparison-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 48px;
    color: #2c3e50;
}

.comparison-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.comparison-item {
    flex: 1;
    min-width: 260px;
    padding: 32px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.comparison-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #27ae60;
}

.comparison-item p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

.contact-info-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.contact-info-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-info-left {
    flex: 1;
}

.contact-info-left h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.contact-info-left p {
    font-size: 16px;
    margin-bottom: 32px;
    color: #555;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 32px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #27ae60;
}

.contact-item p {
    font-size: 16px;
    color: #555;
    margin-bottom: 0;
}

.contact-note {
    background-color: #f8f9fa;
    padding: 24px;
    border-radius: 8px;
    border-left: 4px solid #27ae60;
}

.contact-note p {
    font-size: 15px;
    color: #555;
    margin-bottom: 0;
    line-height: 1.7;
}

.contact-info-right {
    flex: 1;
    background-color: #ecf0f1;
    border-radius: 8px;
    overflow: hidden;
    min-height: 400px;
}

.contact-info-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.location-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.location-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.location-description {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.location-description p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

.faq-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.faq-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 48px;
    color: #2c3e50;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.faq-item {
    background-color: #f8f9fa;
    padding: 24px;
    border-radius: 8px;
    border-left: 4px solid #27ae60;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.faq-item p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

.thanks-section {
    padding: 80px 20px;
    min-height: 60vh;
    background-color: #f8f9fa;
}

.thanks-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #27ae60;
    color: #ffffff;
    font-size: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
}

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.thanks-message {
    font-size: 18px;
    color: #555;
    margin-bottom: 32px;
    line-height: 1.7;
}

.thanks-details {
    background-color: #ffffff;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 48px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.next-steps {
    margin-bottom: 48px;
}

.next-steps h2 {
    font-size: 32px;
    margin-bottom: 32px;
    color: #2c3e50;
}

.steps-container {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 220px;
    max-width: 280px;
    background-color: #ffffff;
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.step-icon {
    width: 48px;
    height: 48px;
    background-color: #27ae60;
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.step h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.step p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.legal-page {
    padding: 80px 20px;
    background-color: #ffffff;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-container h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.legal-updated {
    font-size: 14px;
    color: #95a5a6;
    margin-bottom: 40px;
}

.legal-container h2 {
    font-size: 28px;
    margin-top: 48px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.legal-container h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 12px;
    color: #34495e;
}

.legal-container h4 {
    font-size: 18px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #34495e;
}

.legal-container p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 16px;
}

.legal-container ul,
.legal-container ol {
    margin-bottom: 24px;
    padding-left: 32px;
}

.legal-container li {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 12px;
}

.legal-container strong {
    color: #2c3e50;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.cookie-table thead {
    background-color: #2c3e50;
    color: #ffffff;
}

.cookie-table th,
.cookie-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid #ecf0f1;
}

.cookie-table th {
    font-weight: 600;
    font-size: 14px;
}

.cookie-table td {
    font-size: 14px;
    color: #555;
}

.cookie-table tbody tr:hover {
    background-color: #f8f9fa;
}

@media (max-width: 768px) {
    .hero-split,
    .intro-container,
    .service-row,
    .form-split,
    .story-container,
    .expertise-split,
    .service-detail-card,
    .contact-info-container {
        flex-direction: column;
    }

    .hero-left h1,
    .page-hero-content h1 {
        font-size: 32px;
    }

    .nav-menu {
        flex-direction: column;
        gap: 12px;
    }

    .trust-stats {
        flex-direction: column;
    }

    .footer-container {
        flex-direction: column;
    }

    .steps-container {
        flex-direction: column;
    }
}