/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #8B4513;
    --secondary-color: #D2691E;
    --accent-color: #CD853F;
    --text-dark: #2C1810;
    --text-light: #5D4E37;
    --bg-light: #FAF8F5;
    --bg-cream: #F5E6D3;
    --white: #FFFFFF;
    --success: #4CAF50;
    --border-color: #E8DCC8;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    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: var(--primary-color);
    transition: color 0.3s ease;
}

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

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

/* Navigation */
.main-nav {
    background: var(--white);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    flex-wrap: wrap;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.nav-cta {
    padding: 10px 24px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s ease;
}

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

/* Hero Split Section */
.hero-split {
    display: flex;
    min-height: 600px;
    flex-wrap: wrap;
}

.hero-content {
    flex: 1;
    min-width: 300px;
    display: flex;
    align-items: center;
    background: var(--bg-cream);
    padding: 60px 40px;
}

.hero-text {
    max-width: 600px;
    margin: 0 auto;
}

.hero-text h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.hero-subtitle {
    font-size: 24px;
    color: var(--text-light);
    margin-bottom: 20px;
    font-weight: 500;
}

.hero-description {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: var(--text-light);
}

.hero-image {
    flex: 1;
    min-width: 300px;
    background: var(--bg-light);
}

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

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-large {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

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

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

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

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

.btn-large {
    padding: 18px 42px;
    font-size: 18px;
    background: var(--primary-color);
    color: var(--white);
}

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

/* Split Sections */
.intro-split,
.about-split,
.team-split,
.process-split,
.contact-split,
.intro-split-reverse {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

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

.intro-image,
.about-image,
.team-image,
.process-image,
.contact-visual,
.intro-visual {
    flex: 1;
    min-width: 300px;
}

.intro-image img,
.about-image img,
.team-image img,
.process-image img,
.contact-visual img,
.intro-visual img {
    border-radius: 8px;
    width: 100%;
}

.intro-content,
.about-content,
.team-content,
.process-content,
.contact-info {
    flex: 1;
    min-width: 300px;
}

.intro-content h2,
.about-content h2,
.team-content h2 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.intro-content p,
.about-content p,
.team-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-light);
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 16px;
}

.link-arrow:hover {
    color: var(--secondary-color);
}

/* Benefits Grid */
.benefits-grid {
    padding: 80px 20px;
    background: var(--bg-light);
}

.section-title {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.benefits-wrapper {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.benefit-card {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    padding: 32px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.benefit-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.benefit-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

/* Services Showcase */
.services-showcase {
    padding: 80px 20px;
}

.services-showcase h2 {
    font-size: 48px;
    margin-bottom: 20px;
    text-align: center;
}

.section-intro {
    text-align: center;
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

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

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

.service-visual img {
    border-radius: 8px;
    width: 100%;
}

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

.service-details h3 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.service-desc {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: var(--text-light);
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 20px 0;
}

.btn-select-service {
    padding: 12px 28px;
    background: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Testimonial */
.testimonial-section {
    padding: 80px 20px;
    background: var(--primary-color);
    color: var(--white);
}

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

.testimonial-content blockquote {
    font-size: 28px;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial-content cite {
    font-size: 18px;
    font-style: normal;
    opacity: 0.9;
}

/* Process Steps */
.process-split {
    background: var(--bg-cream);
}

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

.step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
}

.step h4 {
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.step p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Form Section */
.form-section {
    padding: 80px 20px;
    background: var(--bg-light);
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.form-intro {
    text-align: center;
    margin-bottom: 40px;
}

.form-intro h2 {
    font-size: 42px;
    margin-bottom: 16px;
}

.form-intro p {
    font-size: 18px;
    color: var(--text-light);
}

.enrollment-form {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.1);
}

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

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

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

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

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

.btn-submit:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* CTA Final */
.cta-final,
.cta-about,
.cta-services,
.cta-contact {
    padding: 80px 20px;
    text-align: center;
    background: var(--bg-cream);
}

.cta-final h2,
.cta-about h2,
.cta-services h2,
.cta-contact h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-final p,
.cta-about p,
.cta-services p,
.cta-contact p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 32px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.main-footer {
    background: var(--text-dark);
    color: var(--bg-light);
    padding: 60px 20px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--white);
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--bg-light);
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: var(--bg-light);
    font-size: 14px;
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    font-size: 14px;
    color: var(--bg-light);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--white);
    padding: 20px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    z-index: 2000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 200px;
    font-size: 14px;
    line-height: 1.5;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-accept:hover {
    background: #45a049;
}

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

.btn-reject:hover {
    background: var(--white);
    color: var(--text-dark);
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    padding: 16px 28px;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    z-index: 1500;
    transition: all 0.3s ease;
}

.sticky-cta:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.4);
}

/* Page Hero */
.page-hero {
    padding: 80px 20px 60px;
    background: var(--bg-cream);
    text-align: center;
}

.page-hero h1 {
    font-size: 56px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.hero-lead {
    font-size: 22px;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Philosophy Section */
.philosophy-section {
    padding: 80px 20px;
}

.philosophy-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

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

.philosophy-item h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.philosophy-item p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
}

/* Space Section */
.space-section {
    padding: 80px 20px;
    background: var(--bg-light);
}

.space-features {
    margin-top: 60px;
}

.space-split {
    display: flex;
    gap: 50px;
    margin-bottom: 50px;
    align-items: center;
    flex-wrap: wrap;
}

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

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

.space-image img {
    border-radius: 8px;
}

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

.space-text h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.space-text p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
}

/* Values Section */
.values-section {
    padding: 80px 20px;
}

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

.value-text {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: var(--text-light);
}

/* Services Detailed */
.services-intro {
    padding: 60px 20px;
    background: var(--bg-light);
}

.services-detailed {
    padding: 80px 20px;
}

.service-card-full {
    margin-bottom: 80px;
}

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

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

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

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

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

.service-card-content h3 {
    font-size: 36px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.service-level {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-color);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.service-duration {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-description {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: var(--text-light);
}

.service-includes {
    font-size: 16px;
    margin: 20px 0;
    color: var(--text-light);
}

.service-pricing-box {
    margin: 24px 0;
    padding: 20px;
    background: var(--bg-cream);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.service-price-large {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.price-note {
    font-size: 14px;
    color: var(--text-light);
}

.btn-enroll {
    display: inline-block;
    padding: 14px 32px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 16px;
}

.btn-enroll:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-enroll.large {
    padding: 16px 40px;
    font-size: 18px;
}

/* Featured Service */
.service-card-featured {
    position: relative;
    padding: 40px;
    background: var(--bg-cream);
    border-radius: 12px;
    margin-bottom: 60px;
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 40px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.service-pricing-box.featured {
    background: var(--white);
    border-left: 4px solid var(--secondary-color);
}

/* FAQ Section */
.faq-section,
.faq-contact {
    padding: 80px 20px;
    background: var(--bg-light);
}

.faq-grid,
.faq-simple {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    flex: 1;
    min-width: 250px;
    padding: 24px;
    background: var(--white);
    border-radius: 8px;
}

.faq-item h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.faq-item p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-light);
}

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

/* Contact Sections */
.contact-main {
    padding: 80px 20px;
}

.info-block {
    margin-bottom: 40px;
}

.info-block h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.info-block p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 8px;
}

.info-note {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
    margin-top: 8px;
}

.contact-secondary {
    padding: 80px 20px;
    background: var(--bg-light);
}

.directions-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 40px;
}

.direction-item {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    padding: 28px;
    background: var(--white);
    border-radius: 8px;
}

.direction-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.direction-item p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
}

/* Thanks Page */
.thanks-hero {
    padding: 80px 20px;
    background: var(--bg-cream);
}

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

.thanks-icon {
    margin: 0 auto 32px;
    width: 80px;
}

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.thanks-subtitle {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.service-confirmation {
    margin: 30px 0;
}

.selected-service-box {
    padding: 24px;
    background: var(--white);
    border-radius: 8px;
    border-left: 4px solid var(--success);
}

.service-name {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
}

.thanks-next-steps {
    margin: 50px 0;
    text-align: left;
}

.thanks-next-steps h3 {
    font-size: 28px;
    margin-bottom: 24px;
    text-align: center;
}

.step-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    background: var(--white);
    border-radius: 8px;
}

.step-num {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 40px;
}

.step-item p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 40px 0;
    flex-wrap: wrap;
}

.thanks-note {
    margin-top: 40px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 8px;
}

.thanks-note p {
    font-size: 15px;
    color: var(--text-light);
}

.thanks-extra {
    padding: 80px 20px;
}

.extra-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 40px;
}

.extra-card {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    padding: 32px;
    background: var(--bg-light);
    border-radius: 8px;
    text-align: center;
}

.extra-card h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.extra-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 16px;
}

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

/* Legal Pages */
.legal-page {
    padding: 60px 20px 80px;
}

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

.legal-container h1 {
    font-size: 42px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.update-date {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    margin: 40px 0 16px;
    color: var(--text-dark);
}

.legal-content h3 {
    font-size: 22px;
    margin: 24px 0 12px;
    color: var(--text-dark);
}

.legal-content h4 {
    font-size: 18px;
    margin: 16px 0 8px;
    color: var(--text-dark);
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: var(--text-light);
}

.legal-content ul {
    margin: 16px 0 16px 24px;
    color: var(--text-light);
}

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

.cookie-table {
    width: 100%;
    margin: 20px 0;
    border-collapse: collapse;
}

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

.cookie-table th {
    background: var(--bg-cream);
    font-weight: 600;
    color: var(--text-dark);
}

.cookie-table td {
    color: var(--text-light);
    font-size: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 40px;
    }

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

    .nav-menu {
        gap: 15px;
    }

    .intro-content h2,
    .about-content h2,
    .team-content h2 {
        font-size: 32px;
    }

    .section-title,
    .services-showcase h2 {
        font-size: 32px;
    }

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

    .service-card-content h3 {
        font-size: 28px;
    }

    .sticky-cta {
        bottom: 20px;
        right: 20px;
        padding: 12px 20px;
        font-size: 14px;
    }

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

    .service-split,
    .space-split {
        gap: 30px;
    }

    .thanks-content h1 {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 32px;
    }

    .nav-container {
        flex-direction: column;
        gap: 16px;
    }

    .nav-menu {
        flex-direction: column;
        width: 100%;
        text-align: center;
        gap: 12px;
    }

    .enrollment-form {
        padding: 24px;
    }

    .testimonial-content blockquote {
        font-size: 20px;
    }

    .service-price-large {
        font-size: 28px;
    }
}
