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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #374151;
    overflow-x: hidden;
}

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

/* CSS Variables */
:root {
    --primary-brown: #8B5A3C;
    --accent-brown: #D4A574;
    --light-bg: #F4E4D6;
    --text-dark: #374151;
    --text-medium: #4B5563;
    --text-light: #6B7280;
    --white: #FFFFFF;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-800: #1F2937;
    --section-padding: 80px;
    --container-max-width: 1280px;
}

/* Utility Classes */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 80px;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-title {
    font-size: 36px;
    font-weight: 400;
    line-height: 40px;
    color: var(--primary-brown);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    color: var(--text-medium);
    max-width: 724px;
    margin: 0 auto;
}

.section-divider {
    width: 96px;
    height: 4px;
    background: var(--accent-brown);
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 8px;
    border: none;
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background: #6d4530;
    border-color: #6d4530;
}

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

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

.btn-cta-primary {
    background: var(--white);
    color: var(--primary-brown);
    border: 2px solid var(--white);
}

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

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

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.nav {
    height: 64px;
    display: flex;
    align-items: center;
}

.nav-container {
    max-width: var(--container-max-width);
    width: 100%;
    margin: 0 auto;
    padding: 0 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.nav-brand:hover {
    opacity: 0.8;
}

.nav-icon {
    font-size: 24px;
    color: var(--primary-brown);
}

.nav-title {
    font-size: 24px;
    font-weight: 400;
    line-height: 32px;
    color: var(--primary-brown);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-brown);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: var(--primary-brown);
    transition: all 0.3s ease;
    border-radius: 3px;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

body.menu-open {
    overflow: hidden;
}

/* Hero Section */
.hero {
    padding: 150px 0 150px;
    background: linear-gradient(135deg, #F4E4D6 0%, #FFF 35.36%, rgba(212, 165, 116, 0.20) 70.71%);
    position: relative;
    margin-top: 64px;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 80px;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 48px;
    min-height: 384px;
}

.hero-text {
    flex: 1;
    max-width: 512px;
}

.hero-title-container {
    margin-bottom: 32px;
}

.hero-title {
    font-size: 60px;
    font-weight: 400;
    line-height: 60px;
    margin-bottom: 10px;
}

.title-main {
    color: var(--primary-brown);
}

.title-accent {
    color: var(--accent-brown);
}

.hero-subtitle {
    font-size: 30px;
    font-weight: 400;
    line-height: 36px;
    color: var(--text-dark);
    margin-bottom: 32px;
}

.hero-description {
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    color: var(--text-medium);
    margin-bottom: 32px;
    max-width: 503px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
}

.hero-image-container {
    flex: 1;
    position: relative;
    width: 100%;
    max-width: 512px;
    height: auto;
    aspect-ratio: 4/3;
}

.hero-image-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 16px;
}

.hero-image-bg-1 {
    background: rgba(212, 165, 116, 0.20);
    top: -24px;
    right: -24px;
}

.hero-image-bg-2 {
    background: rgba(139, 90, 60, 0.10);
    top: 24px;
    left: -24px;
}

.hero-image {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px 0 rgba(0, 0, 0, 0.25);
}

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

/* About Section */
.about {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.about-content {
    display: flex;
    align-items: flex-start;
    gap: 32px;
}

.achievements {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 811px;
}

.achievement-card {
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.10), 0 10px 15px 0 rgba(0, 0, 0, 0.10);
}

.achievement-card-1 {
    background: rgba(244, 228, 214, 0.30);
}

.achievement-card-2 {
    background: rgba(212, 165, 116, 0.20);
}

.achievement-card-3 {
    background: rgba(139, 90, 60, 0.10);
}

.achievement-card-4 {
    background: rgba(244, 228, 214, 0.50);
}

.achievement-content {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.achievement-icon {
    width: 52px;
    height: 52px;
    padding: 14px 12px;
    border-radius: 8px;
    background: var(--primary-brown);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.achievement-icon-accent {
    background: var(--accent-brown);
}

.achievement-icon i {
    font-size: 24px;
    color: white;
}

.achievement-text {
    flex: 1;
}

.achievement-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    color: var(--gray-800);
    margin-bottom: 8px;
}

.achievement-description {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: var(--text-medium);
}

.about-image-container {
    flex: 0 0 auto;
    width: 100%;
    max-width: 389px;
    position: relative;
}

.about-image {
    position: relative;
    width: 100%;
    max-width: 320px;
    height: auto;
    aspect-ratio: 320/270;
    margin-left: auto;
    margin-right: 0;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 8px 10px 0 rgba(0, 0, 0, 0.10), 0 20px 25px 0 rgba(0, 0, 0, 0.10);
}

.about-image-overlay {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    background: rgba(139, 90, 60, 0.20);
    z-index: -1;
}

/* Therapy Introduction */
.therapy-intro {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, rgba(244, 228, 214, 0.30) 0%, rgba(212, 165, 116, 0.10) 70.71%);
}

.therapy-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.therapy-card {
    padding: 32px;
    background: var(--white);
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.10), 0 10px 15px 0 rgba(0, 0, 0, 0.10);
}

.therapy-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-brown);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.therapy-icon-accent {
    background: var(--accent-brown);
}

.therapy-icon i {
    font-size: 24px;
    color: white;
}

.therapy-card-title {
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    color: var(--primary-brown);
    margin-bottom: 16px;
}

.therapy-card-description {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: var(--text-medium);
}

/* Benefits Section */
.benefits {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 64px;
}

.benefit-column {
    text-align: center;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-brown);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.benefit-icon-accent {
    background: var(--accent-brown);
}

.benefit-icon i {
    font-size: 32px;
    color: white;
}

.benefit-title {
    font-size: 24px;
    font-weight: 400;
    line-height: 32px;
    color: var(--primary-brown);
    margin-bottom: 24px;
}

.benefit-list {
    list-style: none;
    text-align: center;
}

.benefit-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--text-medium);
    margin-bottom: 12px;
}

.check-icon {
    font-size: 14px;
    color: var(--accent-brown);
    flex-shrink: 0;
}

.why-dance-section {
    padding: 32px;
    background: linear-gradient(90deg, #F4E4D6 0%, rgba(212, 165, 116, 0.20) 100%);
    border-radius: 16px;
}

.why-dance-content {
    display: flex;
    align-items: center;
    gap: 32px;
}

.why-dance-text {
    flex: 1;
    max-width: 568px;
}

.why-dance-title {
    font-size: 24px;
    font-weight: 400;
    line-height: 32px;
    color: var(--primary-brown);
    margin-bottom: 16px;
}

.why-dance-description {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.participants-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.participant-avatars {
    display: flex;
    align-items: center;
}

.participant-avatars img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--white);
    margin-left: -8px;
}

.participant-avatars img:first-child {
    margin-left: 0;
}

.participants-text {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: var(--text-medium);
}

.why-dance-image {
    flex: 1;
    width: 100%;
    max-width: 320px;
}

.why-dance-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.10), 0 10px 15px 0 rgba(0, 0, 0, 0.10);
}

/* Lessons Section */
.lessons {
    padding: var(--section-padding) 0;
    background: rgba(244, 228, 214, 0.20);
}

.lessons-content {
    display: flex;
    align-items: center;
    gap: 48px;
    margin-bottom: 64px;
}

.lesson-features {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.lesson-feature {
    padding: 24px;
    background: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.10), 0 10px 15px 0 rgba(0, 0, 0, 0.10);
}

.lesson-feature-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-brown);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.lesson-feature-icon-accent {
    background: var(--accent-brown);
}

.lesson-feature-icon i {
    font-size: 20px;
    color: white;
}

.lesson-feature-content {
    flex: 1;
}

.lesson-feature-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    color: var(--gray-800);
    margin-bottom: 8px;
}

.lesson-feature-description {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--text-medium);
}

.lessons-image-container {
    flex: 1;
    position: relative;
    width: 100%;
    max-width: 592px;
}

.lessons-image {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 592/320;
}

.lessons-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 8px 10px 0 rgba(0, 0, 0, 0.10), 0 20px 25px 0 rgba(0, 0, 0, 0.10);
}

.lessons-image-overlay {
    position: absolute;
    top: -16px;
    right: 16px;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    background: rgba(212, 165, 116, 0.20);
    z-index: -1;
}

.themed-lessons {
    padding: 32px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.10), 0 10px 15px 0 rgba(0, 0, 0, 0.10);
}

.themed-lessons-title {
    font-size: 24px;
    font-weight: 400;
    line-height: normal;
    color: var(--primary-brown);
    text-align: center;
    margin-bottom: 32px;
}

.themed-lessons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.themed-lesson {
    text-align: center;
}

.themed-lesson-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-brown);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.themed-lesson-icon-accent {
    background: var(--accent-brown);
}

.themed-lesson-icon i {
    font-size: 24px;
    color: white;
}

.themed-lesson-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    color: var(--gray-800);
    margin-bottom: 12px;
}

.themed-lesson-description {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: var(--text-medium);
}

/* Testimonials */
.testimonials {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.testimonial {
    padding: 24px;
    border-radius: 12px;
    background: rgba(244, 228, 214, 0.30);
}

.testimonial:nth-child(2) {
    background: rgba(212, 165, 116, 0.20);
}

.testimonial:nth-child(3) {
    background: rgba(139, 90, 60, 0.10);
}

.testimonial-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    color: var(--gray-800);
    margin-bottom: 4px;
}

.testimonial-rating {
    display: flex;
    gap: 2px;
}

.star {
    color: #FACC15;
    font-size: 14px;
}

.testimonial-text {
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    color: var(--text-medium);
}

/* Call to Action */
.cta {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, #8B5A3C 0%, #D4A574 70.71%);
    text-align: center;
}

.cta-content {
    max-width: 896px;
    margin: 0 auto;
}

.cta-title {
    font-size: 36px;
    font-weight: 400;
    line-height: 40px;
    color: var(--white);
    margin-bottom: 24px;
}

.cta-description {
    font-size: 20px;
    font-weight: 400;
    line-height: 33px;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-subtitle {
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    color: var(--white);
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

/* Footer */
.footer {
    padding: 64px 0;
    background: #2C1810;
    color: var(--white);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-icon {
    font-size: 24px;
    color: var(--accent-brown);
}

.footer-title {
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    color: var(--white);
}

.footer-description {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: var(--gray-300);
    max-width: 283px;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 16px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--accent-brown);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.social-link:hover {
    background: var(--primary-brown);
}

.social-link i {
    font-size: 16px;
    color: white;
}

.footer-section-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
    color: var(--white);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--gray-300);
}

.contact-icon {
    font-size: 16px;
    color: var(--accent-brown);
    flex-shrink: 0;
}

.footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-list-item {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--gray-300);
}

.footer-list-item a {
    color: var(--gray-300);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-list-item a:hover {
    color: var(--accent-brown);
}

.footer-bottom {
    padding-top: 48px;
    border-top: 1px solid #374151;
    text-align: center;
}

.footer-website {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--gray-300);
    margin-bottom: 16px;
}

.footer-website strong {
    font-weight: 600;
    color: var(--accent-brown);
}

.footer-copyright {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 40px;
    }

    .nav-container {
        padding: 0 40px;
    }

    .hero-container {
        padding: 0 40px;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 32px;
        min-height: auto;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-image-container {
        width: 100%;
        max-width: 450px;
        margin: 0 auto;
    }

    .hero-image-bg-1,
    .hero-image-bg-2 {
        display: none;
    }

    .about-content {
        flex-direction: column;
        align-items: center;
    }

    .about-image-container {
        flex: none;
        align-self: center;
    }

    .about-image {
        margin-left: auto;
        margin-right: auto;
    }

    .achievements {
        max-width: 100%;
    }

    .therapy-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

    .why-dance-text {
        max-width: 100%;
    }

    .why-dance-image {
        margin: 0 auto;
    }

    .lessons-content {
        flex-direction: column;
    }

    .lessons-image-container {
        width: 100%;
        max-width: 100%;
        align-self: center;
    }

    .lessons-image-overlay {
        display: none;
    }

    .themed-lessons-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }

    .container {
        padding: 0 20px;
    }

    .nav-container {
        padding: 0 20px;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 64px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 64px);
        background: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 40px 20px;
        gap: 24px;
        transition: left 0.3s ease;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

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

    .nav-link {
        font-size: 18px;
        width: 100%;
        text-align: center;
        padding: 12px 0;
    }

    .nav-title {
        font-size: 18px;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-container {
        padding: 0 20px;
    }

    .hero-title {
        font-size: 40px;
        line-height: 44px;
    }

    .hero-subtitle {
        font-size: 24px;
        line-height: 28px;
    }

    .hero-description {
        max-width: 100%;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .section-title {
        font-size: 28px;
        line-height: 32px;
    }

    .section-header {
        margin-bottom: 48px;
    }

    .achievements {
        grid-template-columns: 1fr;
    }

    .therapy-cards {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .why-dance-title {
        font-size: 20px;
        line-height: 28px;
    }

    .why-dance-section {
        padding: 24px;
    }

    .participants-info {
        flex-direction: column;
        text-align: center;
    }

    .cta-title {
        font-size: 28px;
        line-height: 32px;
    }

    .cta-description {
        font-size: 18px;
        line-height: 28px;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 48px;
    }

    .container {
        padding: 0 16px;
    }

    .nav-container {
        padding: 0 16px;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 64px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 64px);
        background: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 40px 16px;
        gap: 24px;
        transition: left 0.3s ease;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

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

    .nav-link {
        font-size: 18px;
        width: 100%;
        text-align: center;
        padding: 12px 0;
    }

    .nav-title {
        font-size: 16px;
    }

    .nav-icon {
        font-size: 20px;
    }

    .hero {
        padding: 90px 0 48px;
    }

    .hero-container {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 32px;
        line-height: 36px;
    }

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

    .hero-description {
        font-size: 16px;
        line-height: 24px;
    }

    .section-title {
        font-size: 24px;
        line-height: 28px;
    }

    .section-subtitle {
        font-size: 16px;
        line-height: 24px;
    }

    .section-header {
        margin-bottom: 32px;
    }

    .achievement-card {
        padding: 16px;
    }

    .achievement-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
    }

    .therapy-card {
        padding: 24px 16px;
    }

    .benefit-icon {
        width: 64px;
        height: 64px;
    }

    .benefit-icon i {
        font-size: 24px;
    }

    .benefit-title {
        font-size: 20px;
        line-height: 28px;
    }

    .why-dance-section {
        padding: 20px;
    }

    .lesson-feature {
        padding: 16px;
        flex-direction: column;
        text-align: center;
    }

    .themed-lessons {
        padding: 24px 16px;
    }

    .themed-lessons-title {
        font-size: 20px;
        margin-bottom: 24px;
    }

    .testimonial {
        padding: 16px;
        text-align: center;
    }

    .testimonial-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 8px;
    }

    .testimonial-text {
        text-align: center;
    }

    .cta-title {
        font-size: 24px;
        line-height: 28px;
    }

    .cta-description {
        font-size: 16px;
        line-height: 24px;
    }

    .cta-subtitle {
        font-size: 16px;
        line-height: 24px;
    }

    .footer {
        padding: 48px 0;
    }

    .footer-section {
        text-align: center;
        align-items: center;
    }

    .footer-brand {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-contact {
        align-items: center;
    }

    .contact-item {
        justify-content: center;
    }

    .footer-list {
        align-items: center;
    }
}
