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

/* Performance optimizations */
img {
    max-width: 100%;
    height: auto;
}

/* Accessibility: visible focus for keyboard users */
:focus-visible {
    outline: 2px solid #4CAF50;
    outline-offset: 2px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
    outline: 2px solid #4CAF50;
    outline-offset: 2px;
}

/* Minimum tap target size (44px) for mobile - buttons and interactive controls */
.cta-button,
.read-more-btn,
.program-button,
button.modal-close,
.lightbox-close,
.lightbox-nav {
    min-height: 44px;
    min-width: 44px;
}

.nav-link {
    min-height: 44px;
    padding: 0.5rem 0.75rem;
    display: inline-flex;
    align-items: center;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #4CAF50;
}

.nav-logo i {
    font-size: 1.8rem;
}

.logo-image {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-left: auto;
    margin-right: 0;
    position: relative;
    left: -15%;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #4CAF50;
}

/* Mobile Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #4CAF50;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

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

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

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #E8F5E8 0%, #FFF3E0 50%, #E3F2FD 100%);
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    min-width: 100%;
    min-height: 100%;
    transition: opacity 0.3s ease;
}

.hero-banner-image[loading] {
    opacity: 0.8;
}



.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 100vh;
    position: relative;
    z-index: 3;
}

.hero-title {
    font-family: 'Nunito', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #2E7D32;
}

.hero-text {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    max-width: 450px;
    margin: -75px auto 0;
}

.highlight {
    color: #FF8A65;
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #4CAF50, #FFD54F);
    border-radius: 2px;
}

.hero-subtext {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
}

.cta-button.primary {
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
    color: white;
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(76, 175, 80, 0.4);
}

.cta-button.secondary {
    background: linear-gradient(135deg, #FF8A65, #FFB74D);
    color: white;
    box-shadow: 0 8px 25px rgba(255, 138, 101, 0.3);
}

.cta-button.secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 138, 101, 0.4);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 500px;
}

.magical-tree {
    position: relative;
    z-index: 3;
}

.tree-trunk {
    width: 40px;
    height: 120px;
    background: linear-gradient(180deg, #8D6E63, #5D4037);
    border-radius: 20px;
    position: relative;
    animation: grow 2s ease-out;
}

.tree-leaves {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
}

.leaf {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
    border-radius: 50% 0;
}

.leaf-1 { top: 20px; left: 70px; animation-delay: 0s; }
.leaf-2 { top: 50px; left: 30px; animation-delay: 0.5s; }
.leaf-3 { top: 50px; right: 30px; animation-delay: 1s; }
.leaf-4 { top: 80px; left: 50px; animation-delay: 1.5s; }
.leaf-5 { top: 80px; right: 50px; animation-delay: 2s; }

@keyframes grow {
    from { transform: scaleY(0); }
    to { transform: scaleY(1); }
}


.children-around-tree {
    position: absolute;
    width: 100%;
    height: 100%;
}

.child {
    position: absolute;
    font-size: 2rem;
    animation: bounce 2s ease-in-out infinite;
}

.child-1 { top: 60%; left: 10%; animation-delay: 0s; }
.child-2 { top: 40%; left: 15%; animation-delay: 0.3s; }
.child-3 { top: 70%; right: 10%; animation-delay: 0.6s; }
.child-4 { top: 45%; right: 15%; animation-delay: 0.9s; }
.child-5 { bottom: 20%; left: 25%; animation-delay: 1.2s; }
.child-6 { bottom: 20%; right: 25%; animation-delay: 1.5s; }

@keyframes bounce {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.storyteller {
    position: absolute;
    top: 20%;
    right: 10%;
    z-index: 4;
}

.pallavi {
    font-size: 3rem;
    animation: wave 2s ease-in-out infinite;
}

.story-bubbles {
    position: absolute;
    top: -20px;
    right: -20px;
}

.bubble {
    position: absolute;
    font-size: 1.5rem;
}

.bubble-1 { top: 0; right: 0; animation-delay: 0s; }
.bubble-2 { top: -30px; right: 10px; animation-delay: 1s; }
.bubble-3 { top: -15px; right: -15px; animation-delay: 2s; }

@keyframes wave {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(10deg); }
    75% { transform: rotate(-10deg); }
}


/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-family: 'Nunito', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2E7D32;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: linear-gradient(135deg, #F3E5F5 0%, #E8F5E8 100%);
}

.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-text {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-intro h3,
.about-vision h3,
.about-objective h3 {
    font-family: 'Nunito', sans-serif;
    font-size: 2.2rem;
    color: #2E7D32;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-align: center;
    position: relative;
}

.about-objective h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #4CAF50, #2E7D32);
    border-radius: 2px;
}

.about-intro p,
.about-vision p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
    text-align: center;
}

.about-objective p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #2E7D32;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-align: center;
    font-style: italic;
}

.about-vision {
    margin: 2rem 0;
}


.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
}

.highlight-item i {
    font-size: 1.5rem;
    color: #4CAF50;
}

.about-visual {
    display: none;
}

.storytelling-scene {
    position: relative;
    width: 350px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-logo-container {
    display: none;
}

.about-logo {
    width: 250px;
    height: 250px;
    object-fit: contain;
    max-width: 100%;
    max-height: 100%;
    background: transparent;
}


@keyframes storytelling {
    0%, 100% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) scale(1.05); }
}

@keyframes listen-attentively {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

@keyframes twinkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.2); }
}

/* Founder Section */
.founder {
    padding: 6rem 0;
    background: linear-gradient(135deg, #FFF3E0 0%, #E3F2FD 100%);
}

.founder-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: flex-start;
}

@media (min-width: 769px) and (max-width: 1024px) {
    .founder-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .founder-image {
        position: relative;
        top: 0;
        max-width: 600px;
        margin: 0 auto;
    }
}

.founder-text {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.founder-image {
    position: sticky;
    top: 20px;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.25);
    background: linear-gradient(135deg, #E8F5E8 0%, #FFF3E0 100%);
    height: fit-content;
    padding: 12px;
    align-self: flex-start;
}

.founder-photo {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 18px;
    transition: transform 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.founder-image:hover .founder-photo {
    transform: scale(1.03);
}

.founder-bio {
    background: white;
    padding: 3.5rem 3.5rem 3rem;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-top: 4px solid #4CAF50;
}

.founder-bio p {
    font-size: 1.15rem;
    line-height: 2;
    color: #444;
    margin-bottom: 1.8rem;
    text-align: left;
    font-weight: 400;
}

.founder-bio p:first-child {
    font-size: 1.2rem;
    color: #2E7D32;
    font-weight: 500;
}

.founder-bio-intro {
    display: block;
}

.founder-bio-more {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, opacity 0.3s ease-out;
    opacity: 0;
}

.founder-bio-more.expanded {
    max-height: 2000px;
    opacity: 1;
    transition: max-height 0.5s ease-in, opacity 0.5s ease-in;
}

.founder-bio-more p {
    margin-bottom: 1.8rem;
}

.founder-bio-more p:last-child {
    margin-bottom: 0;
    font-style: italic;
    color: #666;
}

.founder-read-more-wrapper {
    text-align: center;
    padding: 1.5rem 0 0.5rem;
    margin-top: 1rem;
    border-top: 1px solid #E0E0E0;
}

.read-more-btn {
    background: transparent;
    border: 2px solid #4CAF50;
    color: #4CAF50;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
}

.read-more-btn:hover {
    background: #4CAF50;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.3);
}

.read-more-icon {
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}

.read-more-btn.expanded .read-more-icon {
    transform: rotate(180deg);
}

.founder-link {
    text-align: left;
    padding-top: 0.5rem;
}

.founder-link .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 14px 28px;
    font-size: 1.05rem;
}

.founder-link small {
    display: block;
    margin-top: 0.5rem;
    color: #999;
    font-size: 0.9rem;
}

/* Media Coverage Section */
.media-coverage {
    padding: 6rem 0;
    background: linear-gradient(135deg, #F5F5F5 0%, #FFFFFF 100%);
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.media-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: white;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.media-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.media-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.3s ease;
}

.media-item:hover .media-image {
    transform: scale(1.05);
}

/* Media Coverage – Collage (1st 40 pictures) */
.media-collage {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.media-collage-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 0.5rem 0;
    text-align: center;
}

.media-collage-subtitle {
    color: #666;
    font-size: 1rem;
    margin: 0 0 2rem 0;
    text-align: center;
}

.media-collage-grid {
    margin-top: 0;
}

/* Lightbox Styles */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-overlay.active .lightbox-close,
.lightbox-overlay.active .lightbox-nav {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: lightboxFadeIn 0.3s ease;
}

@keyframes lightboxFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    z-index: 10001;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    pointer-events: auto;
}

.lightbox-close i {
    color: white;
    font-size: 1.5rem;
}

.lightbox-close:hover {
    background: rgba(0, 0, 0, 0.9);
    border-color: rgba(255, 255, 255, 1);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.7);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    z-index: 10001;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    pointer-events: auto;
}

.lightbox-nav i {
    color: white;
    font-size: 1.5rem;
}

.lightbox-nav:hover {
    background: rgba(0, 0, 0, 0.9);
    border-color: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.7);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 500;
    z-index: 10001;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

/* Mobile responsive for lightbox */
@media (max-width: 768px) {
    .lightbox-nav {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .lightbox-close {
        width: 45px;
        height: 45px;
        top: 10px;
        right: 10px;
        font-size: 1.2rem;
    }
    
    .lightbox-content {
        max-width: 95%;
        max-height: 90vh;
    }
    
    .lightbox-image {
        max-height: 80vh;
    }
    
    .lightbox-counter {
        bottom: 10px;
        font-size: 0.9rem;
        padding: 8px 16px;
    }
}

@media (max-width: 480px) {
    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .lightbox-prev {
        left: 5px;
    }
    
    .lightbox-next {
        right: 5px;
    }
    
    .lightbox-close {
        width: 40px;
        height: 40px;
        top: 5px;
        right: 5px;
        font-size: 1rem;
    }
}

/* Objective Section */
.objective {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.05), rgba(76, 175, 80, 0.02));
}

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

.objective-intro {
    margin-bottom: 3rem;
}

.objective-intro p {
    font-size: 1.4rem;
    color: #2E7D32;
    font-weight: 600;
    font-style: italic;
    margin-bottom: 0;
}

.objectives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.objective-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.1);
    border: 2px solid rgba(76, 175, 80, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.objective-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4CAF50, #2E7D32);
}

.objective-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(76, 175, 80, 0.2);
    border-color: #4CAF50;
}

.objective-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.objective-card h3 {
    font-size: 1.4rem;
    color: #2E7D32;
    margin-bottom: 1rem;
    font-weight: 600;
}

.objective-card p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* School Workshops Section */
.school-workshops {
    padding: 5rem 0;
    background: white;
}

.workshops-content {
    max-width: 1200px;
    margin: 0 auto;
}

.workshop-intro {
    text-align: center;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.workshop-intro p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    font-style: italic;
}

.workshops-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.workshop-category {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.05), rgba(76, 175, 80, 0.02));
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid rgba(76, 175, 80, 0.1);
}

.workshop-category h3 {
    font-size: 1.8rem;
    color: #2E7D32;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 600;
    position: relative;
}

.workshop-category h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #4CAF50, #2E7D32);
    border-radius: 2px;
}

.workshop-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.workshop-item {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(76, 175, 80, 0.1);
    transition: all 0.3s ease;
    font-size: 1rem;
    color: #333;
}

.workshop-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.15);
    border-color: #4CAF50;
}

.workshop-item i {
    color: #4CAF50;
    font-size: 1.2rem;
    margin-right: 1rem;
    width: 20px;
    text-align: center;
}

.workshop-item span {
    font-weight: 500;
    line-height: 1.4;
}

.workshop-note {
    text-align: center;
    margin-top: 2rem;
}

.note-card {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    color: white;
    padding: 1.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.3);
    max-width: 600px;
}

.note-card i {
    font-size: 1.5rem;
    margin-right: 1rem;
    opacity: 0.9;
}

.note-card p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.5;
}

.note-card strong {
    font-weight: 600;
}

/* Workshop Category Buttons */
.workshop-category-button {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(76, 175, 80, 0.2);
}

.workshop-category-button .cta-button {
    position: relative;
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3), 0 0 15px rgba(76, 175, 80, 0.2);
    animation: buttonGlow 3s ease-in-out infinite alternate;
}

@keyframes buttonGlow {
    0% {
        box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3), 0 0 15px rgba(76, 175, 80, 0.2);
    }
    100% {
        box-shadow: 0 12px 30px rgba(76, 175, 80, 0.4), 0 0 20px rgba(76, 175, 80, 0.3);
    }
}

.workshop-category-button .cta-button:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 15px 35px rgba(76, 175, 80, 0.5), 0 0 25px rgba(76, 175, 80, 0.4);
    animation: none;
}

/* Responsive Design for School Workshops */
@media (max-width: 768px) {
    .workshops-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .workshop-category {
        padding: 2rem;
    }
    
    .workshop-category h3 {
        font-size: 1.5rem;
    }
    
    .workshop-item {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
    
    .note-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .note-card i {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
    
    .workshop-category-button {
        margin-top: 1.5rem;
        padding-top: 1rem;
    }
}

/* Story Tree Classes Section */
.story-tree-classes {
    padding: 6rem 0;
    background: white;
}

.story-tree-classes .section-header h2 {
    color: #2E7D32;
}

.story-tree-classes .section-header p {
    color: #666;
}

.classes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.class-card {
    background: linear-gradient(135deg, #FFF3E0 0%, #E8F5E8 100%);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 500px;
    border: 3px solid transparent;
}

.class-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #4CAF50;
}

.class-image {
    background: linear-gradient(135deg, #F5F5F5 0%, #E0E0E0 100%);
    min-height: 250px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.class-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    transition: transform 0.3s ease;
}

.class-card:hover .class-photo {
    transform: scale(1.05);
}

.class-icon {
    font-size: 7rem;
    color: rgba(76, 175, 80, 0.2);
    z-index: 2;
    position: absolute;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

/* Show icon as fallback - will be hidden by JavaScript when image loads */
.class-image .class-icon {
    opacity: 1;
}

/* Hide icon when image is present and loaded */
.class-image:has(.class-photo[src]:not([src=""])) .class-icon {
    opacity: 0;
}

.class-photo[src=""],
.class-photo:not([src]) {
    display: none;
}

.class-card:nth-child(1) .class-icon {
    color: rgba(255, 167, 38, 0.3);
}

.class-card:nth-child(2) .class-icon {
    color: rgba(76, 175, 80, 0.3);
}

.class-card:nth-child(3) .class-icon {
    color: rgba(239, 83, 80, 0.3);
}

.class-card:nth-child(4) .class-icon {
    color: rgba(76, 175, 80, 0.3);
}

.class-content {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    flex: 1;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
}

.class-title {
    font-family: 'Nunito', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.class-title-1 {
    color: #2E7D32; /* Green */
}

.class-title-2 {
    color: #2E7D32; /* Green */
}

.class-title-3 {
    color: #2E7D32; /* Green */
}

.class-title-4 {
    color: #2E7D32; /* Green */
}

.class-description {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.class-age {
    color: #4CAF50;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: auto;
    padding-top: 1rem;
    padding-bottom: 1rem;
    border-top: 1px solid rgba(76, 175, 80, 0.2);
    margin-bottom: 1rem;
}

.class-buttons {
    margin-top: auto;
    padding-top: 1rem;
    text-align: center;
}

.class-buttons .cta-button {
    width: 100%;
    justify-content: center;
}

/* Programs Section */
.programs {
    padding: 6rem 0;
    background: white;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.program-card {
    background: linear-gradient(135deg, #FFF3E0 0%, #E8F5E8 100%);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #4CAF50;
}

.program-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 25px rgba(76, 175, 80, 0.3);
}

.program-icon i {
    font-size: 2rem;
    color: white;
}

.program-card h3 {
    font-family: 'Nunito', sans-serif;
    font-size: 1.5rem;
    color: #2E7D32;
    margin-bottom: 1rem;
}

.program-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.program-button {
    background: linear-gradient(135deg, #FF8A65, #FFB74D);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.program-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 138, 101, 0.4);
}

/* Why Choose Section */
.why-choose {
    padding: 6rem 0;
    background: linear-gradient(135deg, #E3F2FD 0%, #F3E5F5 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.benefit-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #FFD54F, #FFC107);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 25px rgba(255, 193, 7, 0.3);
}

.benefit-icon i {
    font-size: 1.8rem;
    color: white;
}

.benefit-item h4 {
    font-family: 'Nunito', sans-serif;
    font-size: 1.3rem;
    color: #2E7D32;
    margin-bottom: 1rem;
}

.benefit-item p {
    color: #666;
    line-height: 1.6;
}

/* Instagram Posts Section */
.instagram-posts {
    padding: 6rem 0;
    background: white;
    position: relative;
    overflow: hidden;
    width: 100%;
}

/* Desktop: Grid Layout */
.instagram-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Mobile: Carousel Layout */
.instagram-carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
    display: none; /* Hidden on desktop by default */
    box-sizing: border-box;
    width: 100%;
}

.instagram-carousel-btn {
    display: none; /* Hidden on desktop by default */
}

.instagram-posts-carousel {
    overflow: hidden;
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

.instagram-posts-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 2rem;
    will-change: transform;
    width: 100%;
    box-sizing: border-box;
}

.instagram-post {
    position: relative;
    border-radius: 15px;
    overflow: visible;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background: white;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 10px;
}

/* Desktop: Grid post styling */
.instagram-posts-grid .instagram-post {
    width: 100%;
}

/* Mobile: Carousel post styling */
.instagram-posts-track .instagram-post {
    flex: 0 0 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

.instagram-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.instagram-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.instagram-carousel-btn:hover {
    background: rgba(0, 0, 0, 0.9);
    border-color: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.7);
}

.instagram-carousel-btn i {
    color: white;
}

.instagram-carousel-prev {
    left: 5px;
}

.instagram-carousel-next {
    right: 5px;
}

@media (max-width: 768px) {
    .instagram-carousel-prev {
        left: 0;
    }
    
    .instagram-carousel-next {
        right: 0;
    }
}

@media (max-width: 480px) {
    .instagram-carousel-prev {
        left: 2px;
    }
    
    .instagram-carousel-next {
        right: 2px;
    }
}

.instagram-media {
    width: 100%;
    max-width: 100%;
    min-width: 320px;
    margin: 0 auto;
    display: block;
    box-sizing: border-box;
    overflow: visible;
}

/* Instagram embed iframe responsiveness */
.instagram-media iframe {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 320px !important;
    height: auto !important;
    box-sizing: border-box !important;
    overflow: visible !important;
}

/* Ensure Instagram embed container is responsive */
.instagram-post blockquote {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 320px !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
    overflow: visible !important;
}

/* Additional Instagram embed wrapper styles */
.instagram-post a {
    display: block;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: visible;
}

/* Ensure Instagram embed script-generated content is responsive */
.instagram-post > * {
    max-width: 100% !important;
    box-sizing: border-box !important;
}

.instagram-placeholder {
    aspect-ratio: 1;
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
}

.instagram-placeholder:hover {
    transform: scale(1.02);
    color: white;
    text-decoration: none;
}

.instagram-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.instagram-placeholder p {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #E8F5E9 0%, #F1F8E9 100%);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.faq-question {
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    color: #2E7D32;
    cursor: pointer;
    list-style: none;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-question::-webkit-details-marker { display: none; }

.faq-question::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.faq-item[open] .faq-question::after {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem 1.25rem;
    margin: 0;
    color: #555;
    line-height: 1.7;
    font-size: 1rem;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: linear-gradient(135deg, #F3E5F5 0%, #E8F5E8 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-instagram {
    margin-top: 2rem;
    padding: 3rem 2.5rem;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 20px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.contact-instagram .instagram-intro {
    text-align: center;
}

.contact-instagram .instagram-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
}

.contact-instagram .instagram-intro h3 {
    font-size: 1.8rem;
    color: #2E7D32;
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-instagram .instagram-intro p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.contact-instagram .instagram-follow-btn {
    font-size: 1rem;
    padding: 12px 24px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.5rem;
    color: white;
}

.contact-details h4 {
    font-family: 'Nunito', sans-serif;
    font-size: 1.2rem;
    color: #2E7D32;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: #666;
    font-size: 1rem;
}

.contact-link,
.contact-details a {
    color: #2E7D32;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.contact-link:hover,
.contact-details a:hover {
    color: #1B5E20;
    text-decoration: underline;
}

.contact-form-container {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

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

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

.form-group label {
    font-weight: 600;
    color: #2E7D32;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 10px 12px;
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: #FAFAFA;
}

/* Phone Input Container */
.phone-input-container {
    display: flex;
    gap: 8px;
    align-items: stretch;
}

.country-code-select {
    flex: 0 0 120px;
    padding: 10px 8px;
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: 'Poppins', sans-serif;
    background: #FAFAFA;
    cursor: pointer;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.country-code-select:focus {
    outline: none;
    border-color: #4CAF50;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
    background: white;
}

.phone-input-container input[type="tel"] {
    flex: 1;
    margin: 0;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4CAF50;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
    background: white;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.error-message {
    color: #E53E3E;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    display: none;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #E53E3E;
    background: #FEF2F2;
}

.form-group.error .error-message {
    display: block;
}

.form-group.success input,
.form-group.success select,
.form-group.success textarea {
    border-color: #4CAF50;
    background: #F0F9F0;
}

.form-help {
    display: block;
    color: #666;
    font-size: 0.85rem;
    margin-top: 0.25rem;
    line-height: 1.4;
}

/* Closing Section */
.closing {
    padding: 6rem 0;
    background: linear-gradient(135deg, #4CAF50 0%, #66BB6A 100%);
    color: white;
    text-align: center;
}

.closing-content h2 {
    font-family: 'Nunito', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.closing-content p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.closing-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Instagram Section */
.instagram {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.instagram-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.instagram-intro {
    text-align: center;
}

.instagram-icon {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.instagram-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

.instagram-intro h3 {
    font-size: 2rem;
    color: #2E7D32;
    margin-bottom: 1rem;
    font-weight: 600;
}

.instagram-intro p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.instagram-follow-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(225, 48, 108, 0.3);
}

.instagram-follow-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(225, 48, 108, 0.4);
    color: white;
    text-decoration: none;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.instagram-placeholder {
    aspect-ratio: 1;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.instagram-placeholder:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.placeholder-post {
    text-align: center;
    color: #666;
}

.placeholder-post i {
    font-size: 2rem;
    color: #4CAF50;
    margin-bottom: 0.5rem;
}

.placeholder-post p {
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0;
}

/* Responsive Design for Instagram */
@media (max-width: 768px) {
    .instagram-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .instagram-intro h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .instagram-grid {
        grid-template-columns: 1fr;
    }
    
    .instagram-icon {
        width: 80px;
        height: 80px;
    }
}

/* Footer */
.footer {
    background: #2E7D32;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
}

.footer-logo i {
    font-size: 1.8rem;
}

.footer-logo .logo-image {
    height: 35px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.contact-info {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-info span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: white;
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        margin: 1rem 0;
        font-size: 1.2rem;
        padding: 0.5rem 1rem;
        border-radius: 10px;
        transition: all 0.3s ease;
    }
    
    .nav-link:hover {
        background: rgba(76, 175, 80, 0.1);
        transform: translateX(5px);
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    .hero-text {
        padding: 1.2rem 1.5rem;
        margin: 1rem;
        max-width: 90%;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtext {
        font-size: 0.9rem;
    }
    
    .about-content {
        padding: 0 1rem;
        gap: 2rem;
    }
    
    .founder-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        align-items: stretch;
    }
    
    .founder-image {
        position: relative;
        top: 0;
        order: -1;
        max-width: 100%;
        padding: 8px;
    }
    
    .founder-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .founder-image {
        position: relative;
        top: 0;
        order: -1;
    }
    
    .founder-bio {
        padding: 2.5rem 2rem;
    }
    
    .founder-bio p {
        font-size: 1.05rem;
        line-height: 1.8;
    }
    
    .founder-bio p:first-child {
        font-size: 1.1rem;
    }
    
    .founder-link {
        text-align: center;
    }
    
    .founder-link .cta-button {
        width: 100%;
        justify-content: center;
    }
    
    .media-grid,
    .media-collage-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .media-collage {
        margin-top: 3rem;
        padding-top: 2rem;
    }
    
    .media-collage-title {
        font-size: 1.5rem;
    }
    
    .media-collage-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .media-coverage {
        padding: 4rem 0;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
    }
    
    .classes-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .class-card {
        min-height: 400px;
    }
    
    .class-image {
        min-height: 200px;
    }
    
    .class-icon {
        font-size: 5rem;
    }
    
    .class-content {
        padding: 1.5rem;
    }
    
    .class-title {
        font-size: 1.5rem;
    }
    
    .class-buttons .cta-button {
        padding: 12px 20px;
        font-size: 1rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    /* Hide grid on mobile, show carousel */
    .instagram-posts-grid {
        display: none;
    }
    
    .instagram-posts .container {
        padding: 0 10px;
        max-width: 100%;
        overflow: hidden;
    }
    
    .instagram-carousel-container {
        display: block;
        padding: 0 50px;
        position: relative;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }
    
    .instagram-carousel-btn {
        display: flex;
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .instagram-posts-carousel {
        width: 100%;
        overflow: hidden;
    }
    
    .instagram-posts-track {
        gap: 1rem;
        width: 100%;
    }
    
    .instagram-post {
        flex: 0 0 calc(100% - 0px);
        max-width: calc(100% - 0px);
        width: 100%;
        padding: 5px;
        margin: 0;
        box-sizing: border-box;
        overflow: visible;
    }
    
    .instagram-media {
        width: 100% !important;
        max-width: 100% !important;
        height: auto;
        display: block;
        object-fit: contain;
        box-sizing: border-box;
        margin: 0 auto;
        transform: scale(0.95);
        transform-origin: center;
        overflow: visible;
    }
    
    .instagram-media iframe {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        transform: scale(0.95);
        transform-origin: center;
        overflow: visible !important;
    }
    
    .instagram-post blockquote {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        box-sizing: border-box !important;
        overflow: visible !important;
    }
    
    .instagram-placeholder {
        width: 100%;
        max-width: 100%;
        aspect-ratio: 1;
        min-height: auto;
        box-sizing: border-box;
    }
    
    .instagram-placeholder i {
        font-size: 2.5rem;
    }
    
    .instagram-placeholder p {
        font-size: 1rem;
    }
    
    .closing-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-info {
        justify-content: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form-container {
        padding: 2rem;
    }
    
    .contact-instagram {
        margin-top: 1rem;
        padding: 2rem 1.5rem;
    }
    
    .contact-instagram .instagram-icon {
        width: 100px;
        height: 100px;
    }
    
    .contact-instagram .instagram-intro h3 {
        font-size: 1.5rem;
    }
    
    .contact-instagram .instagram-intro p {
        font-size: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .modal-actions {
        flex-direction: column;
    }
    
    .modal-container {
        margin: 10px;
        max-height: 98vh;
        max-width: calc(100vw - 20px);
    }
    
    .modal-header {
        padding: 1rem 1.5rem 0.8rem;
    }
    
    .modal-body {
        padding: 1rem 1.5rem;
    }
    
    .modal-header h3 {
        font-size: 1.5rem;
    }
    
    /* Phone input responsive */
    .phone-input-container {
        flex-direction: column;
        gap: 8px;
    }
    
    .country-code-select {
        flex: none;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .media-grid,
    .media-collage-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .media-collage {
        margin-top: 2.5rem;
        padding-top: 1.5rem;
    }
    
    .media-collage-title {
        font-size: 1.35rem;
    }
    
    .media-collage-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
    }
    
    .media-item {
        aspect-ratio: 4/3;
    }
    
    .media-coverage {
        padding: 3rem 0;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-text {
        padding: 1rem 1.2rem;
        max-width: 95%;
    }
    
    .hero-subtext {
        font-size: 0.85rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .program-card,
    .benefit-item {
        padding: 1.5rem;
    }
    
    .closing-content h2 {
        font-size: 2rem;
    }
    
    .instagram-posts .container {
        padding: 0 5px;
        max-width: 100%;
        overflow: hidden;
    }
    
    .instagram-carousel-container {
        padding: 0 45px;
        position: relative;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }
    
    .instagram-carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 0.85rem;
    }
    
    .instagram-posts-carousel {
        width: 100%;
        overflow: hidden;
    }
    
    .instagram-posts-track {
        gap: 0.75rem;
        width: 100%;
    }
    
    .instagram-post {
        flex: 0 0 calc(100% - 0px);
        max-width: calc(100% - 0px);
        width: 100%;
        padding: 5px;
        margin: 0;
        box-sizing: border-box;
        overflow: visible;
    }
    
    .instagram-media {
        width: 100% !important;
        max-width: 100% !important;
        height: auto;
        display: block;
        object-fit: contain;
        box-sizing: border-box;
        margin: 0 auto;
        transform: scale(0.9);
        transform-origin: center;
        overflow: visible;
    }
    
    .instagram-media iframe {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        transform: scale(0.9);
        transform-origin: center;
        overflow: visible !important;
    }
    
    .instagram-post blockquote {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        box-sizing: border-box !important;
        overflow: visible !important;
    }
    
    .instagram-placeholder {
        width: 100%;
        max-width: 100%;
        aspect-ratio: 1;
        min-height: auto;
        box-sizing: border-box;
    }
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
    box-sizing: border-box;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-container {
    background: white;
    border-radius: 20px;
    max-width: 650px;
    width: 100%;
    max-height: 95vh;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.modal-overlay.active .modal-container {
    transform: scale(1) translateY(0);
}

.modal-container--scroll .modal-body {
    max-height: 70vh;
    overflow-y: auto;
}

.privacy-body h4 { margin-top: 1.25rem; margin-bottom: 0.5rem; font-size: 1.1rem; color: #2E7D32; }
.privacy-body p { margin-bottom: 0.75rem; font-size: 0.95rem; line-height: 1.6; }
.form-privacy-link, .form-privacy-note a { color: #4CAF50; text-decoration: underline; }
.form-privacy-link:hover { color: #2E7D32; }
.form-privacy-note { font-size: 0.9rem; color: #666; margin-bottom: 1rem; }
.footer-legal { margin-top: 0.5rem; font-size: 0.9rem; }

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem 1rem;
    border-bottom: 1px solid #E0E0E0;
    flex-shrink: 0;
}

.modal-header h3 {
    font-family: 'Nunito', sans-serif;
    font-size: 1.8rem;
    color: #2E7D32;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: #F5F5F5;
    color: #E53E3E;
}

.modal-body {
    padding: 1.5rem 2rem;
    overflow-y: auto;
    flex: 1;
    min-height: 0;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #E0E0E0;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.about-content,
.programs-grid,
.benefits-grid,
.testimonials-grid {
    animation: fadeInUp 1s ease-out;
}
