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

:root {
    --primary-color: #2d5016;
    --secondary-color: #4a7c2c;
    --accent-color: #7fb842;
    --dark-bg: #1a2e0d;
    --light-bg: #f4f7f0;
    --text-dark: #2c3e1f;
    --text-light: #6b7d5c;
    --white: #ffffff;
    --gray: #e8ede3;
    --border-color: #d4dcc9;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

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

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

a:hover {
    color: var(--secondary-color);
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    transition: all 0.3s ease;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.95rem;
}

.btn-accept {
    background-color: var(--accent-color);
    color: var(--dark-bg);
}

.btn-accept:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-reject {
    background-color: transparent;
    border: 2px solid var(--gray);
    color: var(--white);
}

.btn-reject:hover {
    background-color: var(--gray);
    color: var(--dark-bg);
}

.main-nav {
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

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

.nav-links {
    display: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-dark);
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
}

.nav-links a:hover {
    border-bottom-color: var(--accent-color);
}

.ad-disclosure {
    font-size: 0.75rem;
    color: var(--text-light);
    padding: 0.25rem 0.75rem;
    background-color: var(--gray);
    border-radius: 3px;
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 0.5rem;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    padding: 1rem 1.5rem;
    background-color: var(--light-bg);
}

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

.mobile-menu a {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    font-weight: 500;
}

.hero-split {
    display: flex;
    flex-direction: column;
    min-height: 500px;
}

.hero-content {
    flex: 1;
    padding: 3rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--light-bg);
}

.hero-content h1 {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

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

.hero-visual {
    flex: 1;
    min-height: 300px;
}

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

.cta-primary,
.cta-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.cta-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 80, 22, 0.3);
}

.cta-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.cta-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.intro-split {
    display: flex;
    flex-direction: column;
}

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

.intro-visual,
.intro-content {
    flex: 1;
}

.intro-visual {
    min-height: 350px;
}

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

.intro-content {
    padding: 3rem 1.5rem;
    background-color: var(--white);
}

.intro-content h2 {
    font-size: 1.8rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.intro-content p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
    color: var(--text-dark);
}

.why-outdoor {
    padding: 4rem 1.5rem;
    background-color: var(--dark-bg);
    color: var(--white);
}

.why-content h2 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    text-align: center;
    color: var(--accent-color);
}

.benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.benefit-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.approach-split {
    display: flex;
    flex-direction: column;
}

.approach-content {
    flex: 1;
    padding: 3rem 1.5rem;
    background-color: var(--light-bg);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.approach-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.approach-content p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
    color: var(--text-dark);
}

.approach-visual {
    flex: 1;
    min-height: 350px;
}

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

.testimonials-section {
    padding: 4rem 1.5rem;
    background-color: var(--white);
}

.testimonials-section h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--primary-color);
}

.testimonials-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial {
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.testimonial p {
    font-size: 1.05rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.testimonial-author {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
    font-style: normal;
}

.programs-preview {
    padding: 4rem 1.5rem;
    background-color: var(--gray);
}

.programs-preview h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--primary-color);
}

.programs-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.programs-intro p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-dark);
}

.programs-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.program-item-split {
    display: flex;
    flex-direction: column;
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.program-item-split.reverse {
    flex-direction: column;
}

.program-info {
    flex: 1;
    padding: 2rem 1.5rem;
}

.program-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.program-info p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.program-info ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.program-info ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.program-info ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.program-pricing {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.5rem;
    background-color: var(--light-bg);
    border-radius: 6px;
}

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

.price-detail {
    font-size: 0.9rem;
    color: var(--text-light);
}

.program-visual {
    flex: 1;
    min-height: 250px;
}

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

.signup-section {
    padding: 4rem 1.5rem;
    background-color: var(--light-bg);
}

.signup-split {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.signup-info {
    flex: 1;
}

.signup-info h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.signup-info p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
    color: var(--text-dark);
}

.signup-form-container {
    flex: 1;
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.signup-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.form-group input,
.form-group select {
    padding: 0.875rem;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 80, 22, 0.3);
}

.science-section {
    padding: 4rem 1.5rem;
    background-color: var(--white);
}

.science-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--primary-color);
}

.science-content {
    max-width: 900px;
    margin: 0 auto;
}

.science-content p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.citation {
    color: var(--secondary-color);
    font-weight: 600;
    text-decoration: none;
    padding: 0 0.25rem;
}

.citation:hover {
    text-decoration: underline;
}

.faq-split {
    padding: 4rem 1.5rem;
    background-color: var(--gray);
}

.faq-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.faq-intro h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.faq-intro p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-dark);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--white);
    padding: 1.75rem;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.faq-item p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-dark);
}

.final-cta-split {
    display: flex;
    flex-direction: column;
}

.final-cta-content {
    flex: 1;
    padding: 3rem 1.5rem;
    background-color: var(--dark-bg);
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.final-cta-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

.final-cta-content p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.final-cta-visual {
    flex: 1;
    min-height: 350px;
}

.final-cta-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-footer {
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 3rem 1.5rem 1rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 2rem;
}

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.footer-section p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.footer-section ul li a:hover {
    color: var(--accent-color);
}

.references-list {
    padding-left: 1.25rem;
}

.references-list li {
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.references-list a {
    color: var(--accent-color);
}

.references-list a:hover {
    text-decoration: underline;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    border-left: 4px solid var(--accent-color);
}

.footer-disclaimer p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.page-hero {
    padding: 4rem 1.5rem 3rem;
    background-color: var(--light-bg);
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.page-hero p {
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-dark);
}

.services-detail {
    padding: 3rem 1.5rem;
    background-color: var(--white);
}

.service-block-split {
    display: flex;
    flex-direction: column;
    margin-bottom: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

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

.service-detail-content {
    flex: 1;
    padding: 2rem 0;
}

.service-detail-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.service-detail-content p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
    color: var(--text-dark);
}

.service-features,
.service-ideal {
    margin: 2rem 0;
}

.service-features h3,
.service-ideal h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.service-features ul {
    list-style: none;
}

.service-features ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
}

.service-features ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.service-price-block {
    margin-top: 2rem;
    padding: 2rem;
    background-color: var(--light-bg);
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.price-large {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.price-frequency {
    display: block;
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.btn-enroll {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-enroll:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 80, 22, 0.3);
}

.service-detail-visual {
    flex: 1;
    min-height: 400px;
    margin: 2rem 0;
}

.service-detail-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.combination-options {
    padding: 4rem 1.5rem;
    background-color: var(--light-bg);
}

.combination-options h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--primary-color);
}

.combination-options > p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

.combo-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto 2rem;
}

.combo-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-top: 4px solid var(--accent-color);
}

.combo-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.combo-card p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.combo-price {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.combo-note {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

.cta-services {
    padding: 4rem 1.5rem;
    background-color: var(--dark-bg);
    text-align: center;
    color: var(--white);
}

.cta-services h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.cta-services p {
    font-size: 1.05rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-services .cta-primary,
.cta-services .cta-secondary {
    margin: 0.5rem;
}

.about-hero-split {
    display: flex;
    flex-direction: column;
}

.about-hero-content {
    flex: 1;
    padding: 3rem 1.5rem;
    background-color: var(--light-bg);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-hero-content h1 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.about-hero-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark);
}

.about-hero-visual {
    flex: 1;
    min-height: 350px;
}

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

.story-section {
    padding: 4rem 1.5rem;
    background-color: var(--white);
}

.story-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--primary-color);
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
}

.story-content p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.philosophy-split {
    display: flex;
    flex-direction: column;
}

.philosophy-visual {
    flex: 1;
    min-height: 350px;
}

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

.philosophy-content {
    flex: 1;
    padding: 3rem 1.5rem;
    background-color: var(--gray);
}

.philosophy-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.philosophy-content p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
    color: var(--text-dark);
}

.values-section {
    padding: 4rem 1.5rem;
    background-color: var(--white);
}

.values-section h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--primary-color);
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.value-item {
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: 8px;
}

.value-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.value-item p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-dark);
}

.team-split {
    display: flex;
    flex-direction: column;
}

.team-content {
    flex: 1;
    padding: 3rem 1.5rem;
    background-color: var(--gray);
}

.team-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.team-content p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
    color: var(--text-dark);
}

.team-visual {
    flex: 1;
    min-height: 350px;
}

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

.locations-section {
    padding: 4rem 1.5rem;
    background-color: var(--white);
}

.locations-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--primary-color);
}

.locations-section > p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

.locations-benefits {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.location-benefit {
    background-color: var(--light-bg);
    padding: 1.75rem;
    border-radius: 8px;
}

.location-benefit h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--secondary-color);
}

.location-benefit p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-dark);
}

.commitment-split {
    display: flex;
    flex-direction: column;
}

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

.commitment-visual {
    flex: 1;
    min-height: 350px;
}

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

.commitment-content {
    flex: 1;
    padding: 3rem 1.5rem;
    background-color: var(--gray);
}

.commitment-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.commitment-content p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
    color: var(--text-dark);
}

.join-section {
    padding: 4rem 1.5rem;
    background-color: var(--dark-bg);
    text-align: center;
    color: var(--white);
}

.join-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.join-section p {
    font-size: 1.05rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.9);
}

.join-section .cta-primary,
.join-section .cta-secondary {
    margin: 0.5rem;
}

.contact-hero {
    padding: 4rem 1.5rem 3rem;
    background-color: var(--light-bg);
    text-align: center;
}

.contact-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact-hero p {
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-dark);
}

.contact-split {
    display: flex;
    flex-direction: column;
    padding: 4rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

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

.contact-detail h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--secondary-color);
}

.contact-detail p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
}

.contact-note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.5rem;
    font-style: italic;
}

.contact-map {
    flex: 1;
    margin-top: 3rem;
}

.contact-map img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.map-caption {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 1rem;
    font-style: italic;
}

.faq-contact {
    padding: 4rem 1.5rem;
    background-color: var(--light-bg);
}

.faq-contact h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--primary-color);
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.cta-contact {
    padding: 4rem 1.5rem;
    background-color: var(--dark-bg);
    text-align: center;
    color: var(--white);
}

.cta-contact h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.cta-contact p {
    font-size: 1.05rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.thanks-hero {
    padding: 6rem 1.5rem;
    background-color: var(--light-bg);
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.thanks-content > p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.thanks-details,
.thanks-next {
    text-align: left;
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.thanks-details h2,
.thanks-next h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.thanks-details ol {
    padding-left: 1.5rem;
}

.thanks-details ol li {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
}

.thanks-next p {
    line-height: 1.7;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.thanks-cta {
    margin-top: 3rem;
}

.thanks-cta .cta-primary,
.thanks-cta .cta-secondary {
    margin: 0.5rem;
}

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

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.legal-content h2 {
    font-size: 1.6rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 1.2rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: var(--secondary-color);
}

.legal-content p {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
    color: var(--text-dark);
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-content ul li,
.legal-content ol li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
    color: var(--text-dark);
}

.legal-content a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.legal-content a:hover {
    color: var(--primary-color);
}

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

.cookie-table thead {
    background-color: var(--light-bg);
}

.cookie-table th,
.cookie-table td {
    padding: 0.875rem;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookie-table th {
    font-weight: 600;
    color: var(--primary-color);
}

.cookie-table td {
    color: var(--text-dark);
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }

    .nav-toggle {
        display: none;
    }

    .cookie-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .cookie-buttons {
        flex-shrink: 0;
    }

    .hero-split {
        flex-direction: row;
        min-height: 600px;
    }

    .intro-split {
        flex-direction: row;
    }

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

    .benefits-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .benefit-card {
        flex: 0 0 calc(50% - 1rem);
    }

    .approach-split {
        flex-direction: row;
    }

    .program-item-split {
        flex-direction: row;
    }

    .program-item-split.reverse {
        flex-direction: row-reverse;
    }

    .signup-split {
        flex-direction: row;
        gap: 3rem;
    }

    .faq-list {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

    .final-cta-split {
        flex-direction: row;
    }

    .footer-content {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .footer-section {
        flex: 0 0 calc(25% - 1.5rem);
    }

    .service-block-split {
        flex-direction: row;
        gap: 3rem;
    }

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

    .combo-cards {
        flex-direction: row;
    }

    .combo-card {
        flex: 1;
    }

    .about-hero-split {
        flex-direction: row;
    }

    .philosophy-split {
        flex-direction: row;
    }

    .values-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

    .team-split {
        flex-direction: row;
    }

    .locations-benefits {
        flex-direction: row;
    }

    .location-benefit {
        flex: 1;
    }

    .commitment-split {
        flex-direction: row;
    }

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

    .contact-split {
        flex-direction: row;
        gap: 3rem;
    }

    .contact-map {
        margin-top: 0;
    }

    .faq-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

@media (min-width: 1024px) {
    .hero-content h1 {
        font-size: 2.75rem;
    }

    .page-hero h1 {
        font-size: 3rem;
    }

    .benefits-grid {
        flex-wrap: nowrap;
    }

    .benefit-card {
        flex: 1;
    }
}
