* {
    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: #222;
    background-color: #fff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: #1a5f7a;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #0d3b4d;
}

.main-nav {
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a5f7a;
}

.nav-disclosure {
    font-size: 0.75rem;
    color: #666;
    padding: 0.25rem 0.75rem;
    background-color: #f5f5f5;
    border-radius: 4px;
    margin: 0 1rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    font-weight: 500;
    color: #333;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    border-radius: 2px;
}

.hero-split,
.intro-split,
.philosophy-split,
.problem-split,
.solution-split,
.services-preview-split,
.trust-split,
.testimonial-split,
.benefits-split,
.cta-form-split,
.final-cta-split,
.page-header-split,
.service-item-split,
.cta-services-split,
.story-split,
.mission-split,
.values-split,
.approach-split,
.team-split,
.difference-split,
.commitment-split,
.cta-about-split,
.contact-info-split,
.location-split,
.hours-split,
.privacy-split,
.cta-contact-split,
.thanks-split,
.preparation-split,
.resources-split {
    display: flex;
    align-items: center;
    min-height: 400px;
    padding: 4rem 2rem;
}

.hero-split {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 600px;
}

.hero-content,
.intro-content,
.philosophy-content,
.problem-content,
.solution-content,
.services-content,
.trust-content,
.testimonial-content,
.benefits-content,
.form-content,
.final-cta-content,
.header-content,
.service-details,
.cta-content,
.story-content,
.mission-content,
.values-content,
.approach-content,
.team-content,
.difference-content,
.commitment-content,
.contact-details,
.location-content,
.hours-content,
.privacy-content,
.thanks-content,
.preparation-content,
.resources-content {
    flex: 1;
    padding: 2rem;
}

.hero-visual,
.intro-visual,
.philosophy-visual,
.problem-visual,
.solution-visual,
.services-visual,
.trust-visual,
.testimonial-visual,
.benefits-visual,
.form-visual,
.final-cta-visual,
.header-visual,
.cta-visual,
.story-visual,
.mission-visual,
.values-visual,
.approach-visual,
.team-visual,
.difference-visual,
.commitment-visual,
.contact-visual,
.location-visual,
.hours-visual,
.privacy-visual,
.thanks-visual,
.preparation-visual,
.resources-visual {
    flex: 1;
    padding: 2rem;
}

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

h1 {
    font-size: 2.75rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

h2 {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 1.25rem;
    color: #2a2a2a;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #3a3a3a;
}

p {
    margin-bottom: 1.25rem;
    font-size: 1.125rem;
    color: #444;
}

.btn-hero,
.btn-cta,
.btn-primary,
.btn-service,
.btn-submit {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #1a5f7a;
    color: #fff;
    font-weight: 600;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #f5f5f5;
    color: #333;
    font-weight: 600;
    border-radius: 6px;
    border: 2px solid #ddd;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.btn-secondary:hover {
    background-color: #e9e9e9;
    border-color: #ccc;
}

.link-inline {
    color: #1a5f7a;
    font-weight: 600;
    border-bottom: 2px solid #1a5f7a;
    padding-bottom: 2px;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.link-inline:hover {
    color: #0d3b4d;
    border-color: #0d3b4d;
}

.problem-list,
.benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.problem-item,
.benefit-card {
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #1a5f7a;
}

.services-quick-list {
    list-style: none;
    margin: 2rem 0;
}

.services-quick-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.125rem;
}

.services-quick-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1a5f7a;
    font-weight: bold;
    font-size: 1.5rem;
}

blockquote {
    border-left: 4px solid #1a5f7a;
    padding-left: 2rem;
    margin: 2rem 0;
    font-style: italic;
    color: #555;
}

cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-weight: 600;
    color: #333;
}

.main-form {
    background-color: #f8f9fa;
    padding: 2.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #1a5f7a;
}

.service-features ul {
    list-style: none;
    margin: 1.5rem 0;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
}

.service-features li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #1a5f7a;
    font-size: 1.5rem;
}

.service-pricing {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a5f7a;
}

.price-detail {
    font-size: 1rem;
    color: #666;
}

.values-list,
.commitment-list,
.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.value-item {
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.commitment-list {
    list-style: none;
}

.commitment-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
}

.commitment-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1a5f7a;
    font-weight: bold;
    font-size: 1.5rem;
}

.approach-steps {
    counter-reset: step-counter;
    list-style: none;
}

.approach-steps li {
    counter-increment: step-counter;
    padding: 1.5rem;
    padding-left: 4rem;
    position: relative;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.approach-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 1.5rem;
    top: 1.5rem;
    background-color: #1a5f7a;
    color: #fff;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.contact-block {
    margin-bottom: 2.5rem;
}

.contact-block h3 {
    color: #1a5f7a;
    margin-bottom: 0.75rem;
}

.next-steps {
    margin: 3rem 0;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.next-steps ol {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.next-steps li {
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a5f7a;
}

.legal-content h2 {
    font-size: 1.75rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: #2a2a2a;
}

.legal-content h3 {
    font-size: 1.25rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.legal-content ul,
.legal-content ol {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid #ddd;
}

.cookie-table th {
    background-color: #f8f9fa;
    font-weight: 600;
}

.main-footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 4rem 2rem 2rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: #fff;
    margin-bottom: 1.5rem;
}

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

.footer-section li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #fff;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding: 2rem;
    background-color: #2a2a2a;
    border-radius: 8px;
    font-size: 0.875rem;
    line-height: 1.6;
    color: #ccc;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #333;
    text-align: center;
    color: #999;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2a2a2a;
    color: #fff;
    padding: 2rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 2000;
    transition: transform 0.3s ease;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
    color: #fff;
}

.cookie-content a {
    color: #90caf9;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .philosophy-split,
    .problem-split,
    .solution-split,
    .services-preview-split,
    .trust-split,
    .testimonial-split,
    .benefits-split,
    .cta-form-split,
    .final-cta-split,
    .page-header-split,
    .service-item-split,
    .cta-services-split,
    .story-split,
    .mission-split,
    .values-split,
    .approach-split,
    .team-split,
    .difference-split,
    .commitment-split,
    .cta-about-split,
    .contact-info-split,
    .location-split,
    .hours-split,
    .privacy-split,
    .cta-contact-split,
    .thanks-split,
    .preparation-split,
    .resources-split {
        flex-direction: column;
        padding: 3rem 1.5rem;
    }

    .reverse {
        flex-direction: column;
    }

    h1 {
        font-size: 2.25rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        gap: 1rem;
        margin-top: 1rem;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-buttons button {
        width: 100%;
    }
}

@media (max-width: 640px) {
    h1 {
        font-size: 1.875rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    p {
        font-size: 1rem;
    }

    .nav-container {
        padding: 1rem;
    }

    .nav-disclosure {
        order: 3;
        width: 100%;
        margin: 1rem 0 0 0;
        text-align: center;
    }

    .hero-split,
    .intro-split,
    .philosophy-split,
    .problem-split,
    .solution-split {
        padding: 2rem 1rem;
    }
}