/* Reset and Base Styles */
* {
    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: #2c3e50;
    background: #ffffff;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

/* Navigation - Split Screen Style */
.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.nav-right {
    display: flex;
    gap: 2rem;
}

.nav-right a {
    font-size: 0.95rem;
    font-weight: 500;
    color: #2c3e50;
    position: relative;
}

.nav-right a:hover {
    color: #1a5f7a;
}

.nav-right a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #1a5f7a;
    transition: width 0.3s ease;
}

.nav-right a:hover::after {
    width: 100%;
}

/* Hero Section - Split Screen */
.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: stretch;
}

.hero-content-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 7%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-content-left h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    color: #1a5f7a;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-content-left p {
    font-size: 1.25rem;
    color: #495057;
    margin-bottom: 2.5rem;
    max-width: 550px;
}

.hero-visual-right {
    flex: 1;
    overflow: hidden;
}

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

/* CTA Buttons */
.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #1a5f7a;
    color: #ffffff;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: #145a70;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 95, 122, 0.3);
}

.cta-link {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: #1a5f7a;
    color: #ffffff;
    font-weight: 600;
    border-radius: 6px;
    margin-top: 1rem;
}

.cta-link:hover {
    background: #145a70;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    justify-content: space-around;
    padding: 4rem 5%;
    background: #ffffff;
    border-bottom: 1px solid #e8e8e8;
}

.indicator-item {
    text-align: center;
}

.indicator-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a5f7a;
    margin-bottom: 0.5rem;
}

.indicator-item p {
    font-size: 1rem;
    color: #6c757d;
}

/* Split Content Sections */
.why-now-split,
.problem-amplification-split,
.outcomes-split,
.methodology-details-split,
.cta-emphasis-split,
.enrollment-cta-split {
    display: flex;
    min-height: 70vh;
    align-items: stretch;
}

.content-image-left,
.outcome-image-left,
.method-visual-right,
.content-visual-right,
.service-image-right,
.service-image-left {
    flex: 1;
    overflow: hidden;
}

.content-image-left img,
.outcome-image-left img,
.method-visual-right img,
.content-visual-right img,
.service-image-right img,
.service-image-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content-text-right,
.content-text-left,
.outcome-text-right,
.method-content-left,
.cta-text-left,
.cta-content-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 7%;
}

.content-text-right h2,
.content-text-left h2,
.outcome-text-right h2,
.method-content-left h2,
.cta-text-left h2,
.cta-content-left h2 {
    font-size: 2.5rem;
    color: #1a5f7a;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.content-text-right p,
.content-text-left p,
.outcome-text-right p,
.method-content-left p,
.cta-text-left p,
.cta-content-left p {
    font-size: 1.1rem;
    color: #495057;
    margin-bottom: 1.2rem;
}

.stakes-list,
.outcome-list,
.method-list,
.coverage-list {
    list-style: none;
    margin: 1.5rem 0;
}

.stakes-list li,
.outcome-list li,
.method-list li,
.coverage-list li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 1rem;
    font-size: 1.05rem;
    color: #495057;
}

.stakes-list li::before,
.outcome-list li::before,
.method-list li::before,
.coverage-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #1a5f7a;
    font-weight: 700;
}

/* Approach Highlight */
.approach-highlight {
    display: flex;
    gap: 3rem;
    padding: 5rem 7%;
    background: #f8f9fa;
}

.approach-block {
    flex: 1;
}

.approach-block h3 {
    font-size: 1.8rem;
    color: #1a5f7a;
    margin-bottom: 1rem;
    font-weight: 700;
}

.approach-block p {
    font-size: 1.05rem;
    color: #495057;
    line-height: 1.7;
}

/* Testimonials */
.testimonial-feature,
.second-testimonial {
    padding: 5rem 7%;
    background: linear-gradient(135deg, #1a5f7a 0%, #145a70 100%);
    text-align: center;
}

.testimonial-feature blockquote,
.second-testimonial blockquote {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-feature blockquote p,
.second-testimonial blockquote p {
    font-size: 1.5rem;
    color: #ffffff;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-feature cite,
.second-testimonial cite {
    font-size: 1.1rem;
    color: #e9ecef;
    font-style: normal;
}

/* Services Section */
.services-preview-split {
    padding: 5rem 7%;
    background: #ffffff;
}

.services-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.services-intro h2 {
    font-size: 2.8rem;
    color: #1a5f7a;
    margin-bottom: 1rem;
    font-weight: 700;
}

.services-intro p {
    font-size: 1.15rem;
    color: #6c757d;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    padding: 2.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card h3 {
    font-size: 1.5rem;
    color: #1a5f7a;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-card p {
    font-size: 1rem;
    color: #495057;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-price {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a5f7a;
    margin-bottom: 1.5rem;
}

.btn-select {
    padding: 0.9rem 2rem;
    background: #1a5f7a;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select:hover {
    background: #145a70;
    transform: translateY(-2px);
}

/* Methodology */
.methodology-feature {
    padding: 5rem 7%;
    background: #f8f9fa;
}

.methodology-feature h2 {
    font-size: 2.5rem;
    color: #1a5f7a;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
}

.method-blocks {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.method-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2rem;
    background: #ffffff;
    border-left: 4px solid #1a5f7a;
}

.method-item h4 {
    font-size: 1.4rem;
    color: #1a5f7a;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.method-item p {
    font-size: 1.05rem;
    color: #495057;
    line-height: 1.7;
}

/* Form Sections */
.cta-form-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    background: #f8f9fa;
}

.enrollment-form {
    width: 100%;
    max-width: 500px;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.enrollment-form h3 {
    font-size: 1.8rem;
    color: #1a5f7a;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.enrollment-form input,
.enrollment-form select,
.enrollment-form textarea {
    width: 100%;
    padding: 0.9rem;
    margin-bottom: 1.2rem;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: #1a5f7a;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #145a70;
    transform: translateY(-2px);
}

/* Assurance Sections */
.final-assurance,
.commitment-statement,
.comparison-note,
.contact-assurance {
    padding: 4rem 7%;
    background: #f8f9fa;
    text-align: center;
}

.assurance-content,
.commitment-statement,
.comparison-note {
    max-width: 700px;
    margin: 0 auto;
}

.assurance-content h3,
.commitment-statement h2,
.comparison-note h2 {
    font-size: 2rem;
    color: #1a5f7a;
    margin-bottom: 1rem;
    font-weight: 700;
}

.assurance-content p,
.commitment-statement p,
.comparison-note p {
    font-size: 1.1rem;
    color: #495057;
    line-height: 1.7;
}

/* Footer */
.footer-split {
    background: #2c3e50;
    color: #e9ecef;
    padding: 4rem 5% 2rem;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

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

.footer-column h4 {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #adb5bd;
}

.footer-column a {
    display: block;
    font-size: 0.95rem;
    color: #adb5bd;
    margin-bottom: 0.7rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid #495057;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #adb5bd;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 90;
}

.sticky-cta-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: #1a5f7a;
    color: #ffffff;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 6px 20px rgba(26, 95, 122, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    background: #145a70;
    transform: scale(1.05);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.97);
    padding: 1.5rem 5%;
    z-index: 200;
    display: none;
}

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

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

.cookie-content p {
    color: #ffffff;
    font-size: 1rem;
    flex: 1;
}

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

.btn-accept,
.btn-reject {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #1a5f7a;
    color: #ffffff;
}

.btn-accept:hover {
    background: #145a70;
}

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

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

/* Page Hero Split */
.page-hero-split {
    display: flex;
    min-height: 50vh;
    align-items: stretch;
}

.hero-text-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 7%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-text-left h1 {
    font-size: 3rem;
    color: #1a5f7a;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-text-left p {
    font-size: 1.2rem;
    color: #495057;
    max-width: 550px;
}

.hero-image-right {
    flex: 1;
    overflow: hidden;
}

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

/* Story Section */
.story-section,
.team-overview,
.results-section {
    padding: 5rem 7%;
    max-width: 900px;
    margin: 0 auto;
}

.story-section h2,
.team-overview h2,
.results-section h2 {
    font-size: 2.5rem;
    color: #1a5f7a;
    margin-bottom: 2rem;
    font-weight: 700;
}

.story-section p,
.team-overview p {
    font-size: 1.1rem;
    color: #495057;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Principles Split */
.principles-split {
    padding: 5rem 7%;
    background: #f8f9fa;
}

.principle-item {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
}

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

.principle-text {
    flex: 1;
}

.principle-text h3 {
    font-size: 2rem;
    color: #1a5f7a;
    margin-bottom: 1rem;
    font-weight: 700;
}

.principle-text p {
    font-size: 1.1rem;
    color: #495057;
    line-height: 1.8;
}

.principle-image {
    flex: 1;
}

.principle-image img {
    width: 100%;
    border-radius: 8px;
}

/* Philosophy Highlight */
.philosophy-highlight {
    padding: 5rem 7%;
    background: linear-gradient(135deg, #1a5f7a 0%, #145a70 100%);
    text-align: center;
}

.philosophy-highlight blockquote p {
    font-size: 1.8rem;
    color: #ffffff;
    line-height: 1.6;
    font-style: italic;
    max-width: 800px;
    margin: 0 auto 1.5rem;
}

.philosophy-highlight cite {
    font-size: 1.1rem;
    color: #e9ecef;
    font-style: normal;
}

/* Results Grid */
.results-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.result-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.result-item h4 {
    font-size: 1.4rem;
    color: #1a5f7a;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.result-item p {
    font-size: 1.05rem;
    color: #495057;
    line-height: 1.7;
}

/* Services Detailed */
.services-detailed {
    padding: 3rem 0;
}

.service-detail-split {
    display: flex;
    min-height: 70vh;
    align-items: stretch;
    border-bottom: 1px solid #e8e8e8;
}

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

.service-info-left,
.service-info-right {
    flex: 1;
    padding: 5rem 7%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-info-left h2,
.service-info-right h2 {
    font-size: 2.5rem;
    color: #1a5f7a;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.age-range {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.service-description {
    font-size: 1.15rem;
    color: #495057;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.service-info-left h4,
.service-info-right h4 {
    font-size: 1.3rem;
    color: #1a5f7a;
    margin: 1.5rem 0 0.8rem;
    font-weight: 700;
}

.service-pricing {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0 1.5rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.price-label {
    font-size: 1.1rem;
    color: #6c757d;
    font-weight: 600;
}

.price-amount {
    font-size: 2.2rem;
    color: #1a5f7a;
    font-weight: 800;
}

/* Contact Info Split */
.contact-info-split {
    display: flex;
    min-height: 60vh;
    align-items: stretch;
}

.contact-details-left {
    flex: 1;
    padding: 5rem 7%;
}

.contact-details-left h2 {
    font-size: 2.5rem;
    color: #1a5f7a;
    margin-bottom: 3rem;
    font-weight: 700;
}

.contact-item {
    margin-bottom: 3rem;
}

.contact-item h3 {
    font-size: 1.5rem;
    color: #1a5f7a;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.contact-item p {
    font-size: 1.1rem;
    color: #495057;
    line-height: 1.8;
}

.contact-item a {
    color: #1a5f7a;
    font-weight: 600;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-note {
    font-size: 0.95rem;
    color: #6c757d;
    margin-top: 0.5rem;
}

.contact-visual-right {
    flex: 1;
    overflow: hidden;
}

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

/* FAQ Section */
.faq-section {
    padding: 5rem 7%;
    background: #f8f9fa;
}

.faq-section h2 {
    font-size: 2.5rem;
    color: #1a5f7a;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2rem;
    background: #ffffff;
    border-radius: 8px;
}

.faq-item h4 {
    font-size: 1.3rem;
    color: #1a5f7a;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.faq-item p {
    font-size: 1.05rem;
    color: #495057;
    line-height: 1.7;
}

/* Legal Container */
.legal-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 5rem 5%;
}

.legal-container h1 {
    font-size: 3rem;
    color: #1a5f7a;
    margin-bottom: 1rem;
    font-weight: 800;
}

.legal-updated {
    font-size: 0.95rem;
    color: #6c757d;
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-size: 2rem;
    color: #1a5f7a;
    margin: 2.5rem 0 1rem;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 1.5rem;
    color: #1a5f7a;
    margin: 1.5rem 0 0.8rem;
    font-weight: 700;
}

.legal-content p {
    font-size: 1.05rem;
    color: #495057;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

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

.legal-content li {
    font-size: 1.05rem;
    color: #495057;
    line-height: 1.8;
    margin-bottom: 0.8rem;
}

.legal-content a {
    color: #1a5f7a;
    font-weight: 600;
}

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

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

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

.cookie-table th {
    background: #f8f9fa;
    color: #1a5f7a;
    font-weight: 700;
}

.cookie-table td {
    color: #495057;
}

/* Thanks Page */
.thanks-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 5%;
}

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

.thanks-content h1 {
    font-size: 3rem;
    color: #1a5f7a;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.thanks-main {
    font-size: 1.25rem;
    color: #495057;
    margin-bottom: 3rem;
}

.next-steps {
    text-align: left;
    margin: 3rem 0;
}

.next-steps h2 {
    font-size: 2rem;
    color: #1a5f7a;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 700;
}

.step-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    align-items: flex-start;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #1a5f7a;
    color: #ffffff;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.4rem;
    color: #1a5f7a;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.step-content p {
    font-size: 1.05rem;
    color: #495057;
    line-height: 1.7;
}

.selected-service {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.selected-service h3 {
    font-size: 1.5rem;
    color: #1a5f7a;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.selected-service p {
    font-size: 1.1rem;
    color: #495057;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
}

.btn-primary {
    padding: 1rem 2rem;
    background: #1a5f7a;
    color: #ffffff;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #145a70;
}

.btn-secondary {
    padding: 1rem 2rem;
    background: transparent;
    color: #1a5f7a;
    border: 2px solid #1a5f7a;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #1a5f7a;
    color: #ffffff;
}

.thanks-note {
    margin-top: 2rem;
}

.thanks-note p {
    font-size: 1.05rem;
    color: #6c757d;
}

.thanks-note a {
    color: #1a5f7a;
    font-weight: 600;
}

.thanks-note a:hover {
    text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-split {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 5%;
    }

    .nav-right {
        gap: 1rem;
    }

    .hero-split,
    .why-now-split,
    .problem-amplification-split,
    .outcomes-split,
    .methodology-details-split,
    .cta-emphasis-split,
    .enrollment-cta-split,
    .page-hero-split,
    .service-detail-split,
    .contact-info-split {
        flex-direction: column;
    }

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

    .hero-content-left h1,
    .hero-text-left h1 {
        font-size: 2.5rem;
    }

    .content-text-right h2,
    .content-text-left h2,
    .hero-content-left h2 {
        font-size: 2rem;
    }

    .trust-indicators {
        flex-direction: column;
        gap: 2rem;
    }

    .approach-highlight {
        flex-direction: column;
    }

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

    .method-blocks {
        flex-direction: column;
    }

    .principle-item,
    .principle-item.reverse {
        flex-direction: column;
    }

    .results-grid,
    .faq-grid {
        flex-direction: column;
    }

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .sticky-cta {
        bottom: 15px;
        right: 15px;
    }

    .sticky-cta-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

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

@media (max-width: 480px) {
    .hero-content-left h1,
    .hero-text-left h1 {
        font-size: 2rem;
    }

    .services-intro h2 {
        font-size: 2rem;
    }

    .thanks-content h1 {
        font-size: 2rem;
    }
}