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

:root {
    --primary-green: #2d8659;
    --dark-green: #1a5037;
    --light-green: #e8f5f0;
    --accent-blue: #3a7ca5;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --border-light: #dee2e6;
    --white: #ffffff;
    --bg-light: #f8f9fa;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    color: var(--primary-green);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--dark-green);
}

.main-nav {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
}

.nav-links a.active,
.nav-links a:hover {
    color: var(--primary-green);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: 0.3s;
}

.split-container {
    display: flex;
    align-items: center;
    min-height: 600px;
}

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

.split-left,
.split-right {
    flex: 1;
    padding: 4rem;
}

.split-left {
    padding-right: 5rem;
}

.split-right {
    padding-left: 5rem;
}

.hero-split {
    background: linear-gradient(135deg, var(--light-green) 0%, var(--white) 100%);
}

.hero-split h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-image img {
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.cta-primary {
    display: inline-block;
    background: var(--primary-green);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(45, 134, 89, 0.3);
    color: var(--white);
}

.btn-primary {
    background: var(--primary-green);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--dark-green);
}

.btn-secondary {
    background: transparent;
    color: var(--text-dark);
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--border-light);
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: var(--primary-green);
    color: var(--primary-green);
}

.btn-primary-large {
    display: inline-block;
    background: var(--primary-green);
    color: var(--white);
    padding: 1.2rem 3rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.btn-primary-large:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
    color: var(--white);
}

.content-wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.content-wrap.narrow {
    max-width: 900px;
}

.content-wrap.centered {
    text-align: center;
}

.insight-block {
    background: var(--white);
    padding: 4rem 2rem;
}

.insight-grid {
    display: flex;
    gap: 3rem;
    justify-content: space-between;
}

.insight-item {
    flex: 1;
}

.insight-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-green);
}

.insight-item p {
    color: var(--text-light);
    font-size: 1.05rem;
}

.narrative-section {
    background: var(--bg-light);
    padding: 5rem 0;
}

.narrative-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.narrative-section p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.trust-markers {
    background: var(--primary-green);
    color: var(--white);
    padding: 4rem 2rem;
}

.trust-grid {
    display: flex;
    justify-content: space-around;
    gap: 3rem;
}

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

.trust-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.trust-item p {
    font-size: 1.1rem;
    opacity: 0.95;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    text-align: center;
}

.section-intro {
    font-size: 1.2rem;
    color: var(--text-light);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.services-preview {
    background: var(--white);
}

.services-split-layout {
    display: flex;
    flex-direction: column;
    gap: 5rem;
    margin-top: 4rem;
}

.service-card-split {
    display: flex;
    gap: 4rem;
    align-items: center;
    background: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
}

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

.service-visual {
    flex: 1;
}

.service-visual img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.service-details {
    flex: 1;
    padding: 3rem;
}

.service-details h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-details p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

.program-features li {
    padding: 0.5rem 0 0.5rem 2rem;
    position: relative;
    color: var(--text-light);
}

.program-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
    font-size: 1.2rem;
}

.price-tag {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-green);
    margin: 1.5rem 0 1rem;
}

.btn-select-service {
    background: var(--primary-green);
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
}

.cta-inline {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: var(--light-green);
    border-radius: 12px;
}

.cta-inline p {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.testimonial-flow {
    background: var(--bg-light);
    padding: 5rem 2rem;
}

.testimonial-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.testimonial-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.testimonial-author strong {
    color: var(--primary-green);
    font-size: 1.1rem;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.95rem;
}

.deep-dive-section {
    background: var(--white);
    padding: 5rem 0;
}

.deep-dive-section h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.deep-dive-section p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.enrollment-form-section {
    background: var(--light-green);
    padding: 5rem 2rem;
}

.enrollment-form-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.enrollment-form-section > .content-wrap > p {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.enrollment-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

.form-row {
    display: flex;
    gap: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid var(--border-light);
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
}

.btn-submit {
    width: 100%;
    background: var(--primary-green);
    color: var(--white);
    padding: 1.2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: var(--dark-green);
}

.final-cta-section {
    background: linear-gradient(135deg, var(--primary-green), var(--accent-blue));
    color: var(--white);
    padding: 6rem 2rem;
}

.final-cta-section h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.final-cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.main-footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 4rem 2rem 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

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

.footer-column ul li {
    margin-bottom: 0.6rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-column ul li a:hover {
    color: var(--white);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.sticky-cta-btn {
    background: var(--primary-green);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(45, 134, 89, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    background: var(--dark-green);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(45, 134, 89, 0.5);
    color: var(--white);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--white);
    padding: 1.5rem;
    z-index: 9999;
    display: none;
}

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

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

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

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

.page-hero-split {
    background: linear-gradient(135deg, var(--light-green) 0%, var(--white) 100%);
    padding: 4rem 0;
}

.page-hero-split h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.story-section {
    background: var(--white);
    padding: 5rem 2rem;
}

.story-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.story-section p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.values-split {
    background: var(--bg-light);
    padding: 5rem 0;
}

.values-split h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.values-split p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.team-section {
    background: var(--white);
    padding: 5rem 2rem;
}

.team-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.team-grid {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.team-member {
    flex: 0 1 280px;
    text-align: center;
}

.team-photo {
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.team-role {
    display: block;
    color: var(--primary-green);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member p {
    color: var(--text-light);
    line-height: 1.6;
}

.partnerships-section {
    background: var(--bg-light);
    padding: 5rem 0;
}

.partnerships-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.partnerships-section p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.impact-section {
    background: var(--white);
    padding: 5rem 2rem;
}

.impact-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.impact-grid {
    display: flex;
    gap: 3rem;
    justify-content: space-around;
    flex-wrap: wrap;
}

.impact-stat {
    text-align: center;
    flex: 0 1 250px;
}

.impact-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.impact-stat p {
    color: var(--text-light);
    font-size: 1.05rem;
}

.cta-about {
    background: var(--light-green);
    padding: 5rem 2rem;
}

.cta-about h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-about p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.program-detail-split {
    padding: 4rem 0;
}

.program-detail-split:nth-child(even) {
    background: var(--bg-light);
}

.program-detail-split:nth-child(odd) {
    background: var(--white);
}

.program-duration {
    display: inline-block;
    background: var(--primary-green);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.program-content h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
}

.program-content h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: var(--text-dark);
}

.program-content > p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.program-pricing {
    margin-top: 2rem;
    padding: 2rem;
    background: var(--light-green);
    border-radius: 12px;
}

.price-amount {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.pricing-note {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.program-comparison {
    background: var(--white);
    padding: 5rem 2rem;
}

.program-comparison h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.comparison-grid {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

.comparison-card {
    flex: 1;
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 12px;
}

.comparison-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-green);
}

.comparison-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.enrollment-cta-section {
    background: linear-gradient(135deg, var(--primary-green), var(--accent-blue));
    color: var(--white);
    padding: 5rem 2rem;
}

.enrollment-cta-section h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.enrollment-cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.contact-info-section {
    background: var(--white);
    padding: 4rem 2rem;
}

.contact-grid {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.contact-card {
    flex: 0 1 350px;
    text-align: center;
    background: var(--bg-light);
    padding: 3rem 2rem;
    border-radius: 12px;
}

.contact-icon {
    color: var(--primary-green);
    margin-bottom: 1.5rem;
}

.contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contact-card p {
    color: var(--text-light);
    line-height: 1.8;
}

.contact-card a {
    color: var(--primary-green);
    font-weight: 600;
}

.contact-note {
    font-size: 0.95rem;
    margin-top: 1rem;
}

.contact-split-section {
    background: var(--bg-light);
    padding: 5rem 0;
}

.contact-split-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.contact-split-section p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.faq-contact-section {
    background: var(--white);
    padding: 5rem 2rem;
}

.faq-contact-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.faq-item {
    flex: 0 1 calc(50% - 1.5rem);
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-green);
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.partnerships-contact {
    background: var(--light-green);
    padding: 5rem 2rem;
}

.partnerships-contact h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
}

.partnerships-contact p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.thanks-hero {
    background: linear-gradient(135deg, var(--light-green) 0%, var(--white) 100%);
    padding: 5rem 2rem;
}

.thanks-icon {
    margin: 0 auto 2rem;
    width: 80px;
    height: 80px;
}

.thanks-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.2rem;
    color: var(--text-light);
}

.thanks-details {
    background: var(--white);
    padding: 4rem 2rem;
}

.thanks-info-box {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 12px;
    margin-bottom: 3rem;
}

.thanks-info-box h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.timeline-steps {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.timeline-step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--primary-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.step-content p {
    color: var(--text-light);
    line-height: 1.7;
}

.thanks-program-info {
    background: var(--light-green);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
}

.thanks-contact {
    text-align: center;
    padding: 2rem;
}

.thanks-contact h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.thanks-contact a {
    font-weight: 600;
}

.thanks-next-steps {
    background: var(--bg-light);
    padding: 5rem 2rem;
}

.thanks-next-steps h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.next-steps-grid {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.next-step-card {
    flex: 0 1 350px;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
}

.next-step-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.next-step-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.btn-text {
    color: var(--primary-green);
    font-weight: 600;
}

.btn-text:hover {
    color: var(--dark-green);
}

.legal-page {
    background: var(--white);
}

.legal-page h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.last-updated {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 3rem;
}

.legal-page h2 {
    font-size: 2rem;
    margin: 3rem 0 1rem;
    color: var(--text-dark);
}

.legal-page h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: var(--text-dark);
}

.legal-page p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

.legal-page li {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.legal-page a {
    color: var(--primary-green);
    font-weight: 600;
}

@media (max-width: 1024px) {
    .split-container {
        flex-direction: column;
        min-height: auto;
    }

    .split-container.reverse {
        flex-direction: column;
    }

    .split-left,
    .split-right {
        padding: 2rem;
    }

    .hero-split h1,
    .page-hero-split h1 {
        font-size: 2.5rem;
    }

    .insight-grid {
        flex-direction: column;
        gap: 2rem;
    }

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

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

    .service-visual img {
        height: 300px;
    }

    .footer-container {
        flex-wrap: wrap;
        gap: 2rem;
    }

    .footer-column {
        flex: 0 1 calc(50% - 1rem);
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

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

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

    .next-steps-grid {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        padding: 2rem;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        gap: 1.5rem;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-split h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

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

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

    .footer-column {
        flex: 0 1 100%;
    }

    .team-grid {
        flex-direction: column;
        align-items: center;
    }

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

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