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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

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

.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 26px;
    font-weight: 700;
    color: #1a472a;
}

.main-nav {
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
}

.main-nav a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s;
}

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

.ad-notice {
    font-size: 12px;
    color: #7f8c8d;
    padding: 4px 10px;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
}

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

.cookie-banner.visible {
    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;
    margin: 0;
}

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

.btn-cookie,
.btn-cookie-secondary {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

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

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

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

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

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

.hero-split .container {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.hero-left {
    flex: 1;
    min-width: 300px;
}

.hero-left h1 {
    font-size: 48px;
    font-weight: 800;
    color: #1a472a;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-lead {
    font-size: 20px;
    color: #555;
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-right {
    flex: 1;
    min-width: 300px;
}

.hero-right img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.btn-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: #27ae60;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

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

.btn-secondary {
    display: inline-block;
    padding: 16px 36px;
    background-color: transparent;
    color: #27ae60;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid #27ae60;
    transition: all 0.3s;
    cursor: pointer;
}

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

.intro-section {
    padding: 80px 0;
}

.split-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.split-content.reverse {
    flex-direction: row-reverse;
}

.split-text {
    flex: 1;
    min-width: 300px;
}

.split-text h2 {
    font-size: 36px;
    color: #1a472a;
    margin-bottom: 20px;
}

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

.split-image {
    flex: 1;
    min-width: 300px;
}

.split-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

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

.section-title-center {
    text-align: center;
    font-size: 42px;
    color: #1a472a;
    margin-bottom: 50px;
}

.section-title-left {
    font-size: 42px;
    color: #1a472a;
    margin-bottom: 40px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

.service-card h3 {
    font-size: 24px;
    color: #1a472a;
    margin-bottom: 16px;
}

.service-card p {
    color: #555;
    margin-bottom: 16px;
}

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

.btn-service {
    width: 100%;
    padding: 14px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

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

.process-section {
    padding: 80px 0;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.step {
    padding: 20px;
    background-color: #f8f9fa;
    border-left: 4px solid #27ae60;
    border-radius: 4px;
}

.step h4 {
    font-size: 20px;
    color: #1a472a;
    margin-bottom: 8px;
}

.step p {
    color: #555;
}

.benefits-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.benefits-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.benefit-large {
    flex: 1 1 calc(60% - 12px);
    min-width: 300px;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
}

.benefit-small {
    flex: 1 1 calc(40% - 12px);
    min-width: 250px;
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
}

.benefit-large h3,
.benefit-small h3 {
    font-size: 26px;
    color: #1a472a;
    margin-bottom: 12px;
}

.benefit-large p,
.benefit-small p {
    color: #555;
    font-size: 16px;
}

.testimonials-inline {
    padding: 80px 0;
}

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

.testimonial-text {
    font-size: 18px;
    font-style: italic;
    color: #2c3e50;
    margin-bottom: 12px;
}

.testimonial-author {
    font-weight: 600;
    color: #555;
}

.form-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.form-wrapper-split {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.form-intro {
    flex: 1;
    min-width: 300px;
}

.form-intro h2 {
    font-size: 36px;
    color: #1a472a;
    margin-bottom: 20px;
}

.form-intro p {
    font-size: 18px;
    color: #555;
    margin-bottom: 24px;
}

.form-benefits {
    list-style: none;
}

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

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

.form-container {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.service-display {
    background-color: #e8f5e9;
    padding: 16px;
    border-radius: 6px;
    margin-bottom: 24px;
    display: none;
}

.service-display.visible {
    display: block;
}

.service-display h4 {
    color: #1a472a;
    margin-bottom: 4px;
}

.service-display p {
    color: #555;
    font-size: 14px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
}

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

.trust-section {
    padding: 80px 0;
}

.trust-section h2 {
    text-align: center;
    font-size: 36px;
    color: #1a472a;
    margin-bottom: 40px;
}

.trust-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.trust-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.trust-item h4 {
    font-size: 22px;
    color: #1a472a;
    margin-bottom: 12px;
}

.trust-item p {
    color: #555;
}

.cta-sticky-trigger {
    padding: 60px 0;
    background-color: #1a472a;
}

.cta-box {
    text-align: center;
    color: #ffffff;
}

.cta-box h3 {
    font-size: 32px;
    margin-bottom: 16px;
}

.cta-box p {
    font-size: 18px;
    margin-bottom: 24px;
}

.disclaimer-section {
    padding: 40px 0;
    background-color: #ecf0f1;
}

.disclaimer-text {
    font-size: 14px;
    color: #7f8c8d;
    text-align: center;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto;
}

.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 0 20px;
}

.footer-grid {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

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

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

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

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

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

.footer-column p {
    color: #bdc3c7;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    text-align: center;
    color: #95a5a6;
}

.page-hero {
    background-color: #1a472a;
    color: #ffffff;
    padding: 80px 0 60px;
    text-align: center;
}

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

.hero-subtitle {
    font-size: 20px;
    color: #ecf0f1;
}

.about-content {
    padding: 80px 0;
}

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

.values-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.value-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
}

.value-card h3 {
    font-size: 24px;
    color: #1a472a;
    margin-bottom: 12px;
}

.value-card p {
    color: #555;
}

.approach-section {
    padding: 80px 0;
}

.team-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.team-section h2 {
    font-size: 36px;
    color: #1a472a;
    margin-bottom: 24px;
    text-align: center;
}

.team-intro {
    font-size: 18px;
    color: #555;
    max-width: 800px;
    margin: 0 auto 20px;
    text-align: center;
}

.mission-section {
    padding: 80px 0;
}

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

.mission-box h2 {
    font-size: 36px;
    color: #1a472a;
    margin-bottom: 24px;
}

.mission-box p {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
}

.cta-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.services-detailed {
    padding: 60px 0;
}

.service-detail {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

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

.service-detail-content {
    flex: 1;
    min-width: 300px;
}

.service-detail-content h2 {
    font-size: 32px;
    color: #1a472a;
    margin-bottom: 20px;
}

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

.service-includes {
    margin: 24px 0;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 6px;
}

.service-includes h4 {
    font-size: 18px;
    color: #1a472a;
    margin-bottom: 12px;
}

.service-includes ul {
    list-style: none;
    padding-left: 0;
}

.service-includes ul li {
    padding: 6px 0;
    padding-left: 24px;
    position: relative;
    color: #555;
}

.service-includes ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
}

.service-pricing {
    margin-top: 24px;
}

.service-pricing .price {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 16px;
}

.service-detail-image {
    flex: 1;
    min-width: 300px;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.service-cta {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.cta-box-alt {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-box-alt h2 {
    font-size: 32px;
    color: #1a472a;
    margin-bottom: 16px;
}

.cta-box-alt p {
    font-size: 18px;
    color: #555;
    margin-bottom: 24px;
}

.contact-content {
    padding: 60px 0;
}

.contact-split {
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info h2 {
    font-size: 32px;
    color: #1a472a;
    margin-bottom: 32px;
}

.contact-item {
    margin-bottom: 32px;
}

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

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

.email-display {
    color: #555;
    cursor: default;
}

.contact-note {
    background-color: #e8f5e9;
    padding: 20px;
    border-radius: 6px;
    margin-top: 32px;
}

.contact-note p {
    color: #1a472a;
    font-size: 15px;
    margin-bottom: 8px;
}

.contact-visual {
    flex: 1;
    min-width: 300px;
}

.contact-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 24px;
}

.location-info {
    background-color: #f8f9fa;
    padding: 24px;
    border-radius: 6px;
}

.location-info h3 {
    font-size: 20px;
    color: #1a472a;
    margin-bottom: 12px;
}

.location-info p {
    color: #555;
}

.contact-cta {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.faq-section {
    padding: 60px 0;
}

.faq-section h2 {
    font-size: 36px;
    color: #1a472a;
    margin-bottom: 40px;
    text-align: center;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.faq-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 300px;
}

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

.faq-item p {
    color: #555;
    line-height: 1.7;
}

.thanks-hero {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

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

.thanks-content h1 {
    font-size: 42px;
    color: #1a472a;
    margin-bottom: 16px;
}

.thanks-lead {
    font-size: 20px;
    color: #555;
    margin-bottom: 32px;
}

.thanks-details {
    background-color: #e8f5e9;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 40px;
    text-align: left;
}

.thanks-info {
    margin: 48px 0;
}

.thanks-info h2 {
    font-size: 32px;
    color: #1a472a;
    margin-bottom: 32px;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: left;
}

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

.step-item h3 {
    font-size: 20px;
    color: #1a472a;
    margin-bottom: 8px;
}

.step-item p {
    color: #555;
}

.thanks-note {
    background-color: #fff3cd;
    padding: 20px;
    border-radius: 6px;
    margin: 32px 0;
}

.thanks-note p {
    color: #856404;
    font-size: 15px;
}

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

.thanks-extra {
    padding: 60px 0;
    background-color: #ffffff;
}

.thanks-extra h2 {
    font-size: 32px;
    color: #1a472a;
    margin-bottom: 32px;
    text-align: center;
}

.preparation-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.prep-item {
    flex: 1;
    min-width: 250px;
    background-color: #f8f9fa;
    padding: 24px;
    border-radius: 8px;
}

.prep-item h3 {
    font-size: 20px;
    color: #1a472a;
    margin-bottom: 12px;
}

.prep-item p {
    color: #555;
}

.legal-page {
    padding: 60px 0;
}

.legal-page h1 {
    font-size: 42px;
    color: #1a472a;
    margin-bottom: 16px;
}

.legal-update {
    color: #7f8c8d;
    font-size: 14px;
    margin-bottom: 40px;
}

.legal-content {
    max-width: 900px;
}

.legal-content h2 {
    font-size: 26px;
    color: #1a472a;
    margin-top: 32px;
    margin-bottom: 16px;
}

.legal-content h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-top: 24px;
    margin-bottom: 12px;
}

.legal-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-top: 16px;
    margin-bottom: 8px;
}

.legal-content p {
    color: #555;
    margin-bottom: 16px;
    line-height: 1.7;
}

.legal-content ul {
    margin: 16px 0 16px 24px;
}

.legal-content ul li {
    color: #555;
    margin-bottom: 8px;
    line-height: 1.7;
}

.cookie-table {
    margin: 24px 0;
}

@media (max-width: 768px) {
    .header-split {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .main-nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .hero-left h1 {
        font-size: 36px;
    }

    .hero-split {
        min-height: auto;
        padding: 40px 0;
    }

    .split-content,
    .split-content.reverse {
        flex-direction: column;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .benefit-large,
    .benefit-small {
        flex: 1 1 100%;
    }

    .form-wrapper-split {
        flex-direction: column;
    }

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

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

    .service-detail,
    .service-detail.reverse {
        flex-direction: column;
    }

    .contact-split {
        flex-direction: column;
    }

    .faq-item {
        flex: 1 1 100%;
    }

    .values-grid {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
    }
}