* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Inter', sans-serif;
    background: #FEF9F0;
    color: #1E2A2E;
    overflow-x: hidden;
}
h1, h2, h3, .logo-text, .hero-title {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
}
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}
.glass-nav {
    position: fixed;
    top: 20px;
    left: 5%;
    width: 90%;
    background: rgba(255, 255, 245, 0.85);
    backdrop-filter: blur(12px);
    border-radius: 60px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    border: 1px solid rgba(255,255,220,0.3);
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo-img {
    height: 48px;
    width: auto;
}
.logo-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1F6B3A;
}
.nav-links {
    display: flex;
    gap: 2rem;
}
.nav-links a {
    text-decoration: none;
    color: #2C3A2B;
    font-weight: 500;
    transition: 0.3s;
}
.nav-links a.active, .nav-links a:hover {
    color: #1F6B3A;
    border-bottom: 2px solid #F4C542;
}
.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}
.hero {
    min-height: 100vh;
    background: linear-gradient(120deg, #D9E6C3, #F9E2C7), url('https://images.unsplash.com/photo-1502086223501-7ea6ecd79368?w=1600&auto=format') center/cover no-repeat;
    background-blend-mode: overlay;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 30%, rgba(31,107,58,0.2), rgba(0,0,0,0.1));
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 2rem;
}
.hero-title {
    font-size: 3.8rem;
    line-height: 1.2;
    margin: 1rem 0;
    color: #1F3B2C;
}
.btn-primary {
    background: #1F6B3A;
    color: white;
    padding: 14px 32px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(31,107,58,0.3);
}
.btn-outline {
    border: 2px solid #1F6B3A;
    background: transparent;
    padding: 12px 28px;
    border-radius: 40px;
    color: #1F6B3A;
    font-weight: 600;
}
.glass-card {
    background: rgba(255, 248, 235, 0.7);
    backdrop-filter: blur(8px);
    border-radius: 32px;
    padding: 2rem;
    border: 1px solid rgba(255,255,210,0.5);
    transition: transform 0.4s ease, box-shadow 0.3s;
}
.glass-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px -12px rgba(0,0,0,0.15);
}
.section-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}
.section-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}
.bubbles-container {
    position: fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    pointer-events: none;
    z-index: 999;
    overflow: hidden;
}
.bubble {
    position: absolute;
    background: radial-gradient(circle at 30% 30%, rgba(244,197,66,0.25), rgba(31,107,58,0.15));
    border-radius: 50%;
    backdrop-filter: blur(2px);
    animation: float 12s infinite ease-in-out;
}
@keyframes float {
    0% { transform: translateY(100vh) scale(0.2); opacity: 0; }
    20% { opacity: 0.7; }
    80% { opacity: 0.5; }
    100% { transform: translateY(-20vh) scale(1.2); opacity: 0; }
}
@media (max-width: 768px) {
    .nav-links { display: none; flex-direction: column; background: white; position: absolute; top: 70px; left: 5%; width: 90%; border-radius: 24px; padding: 1rem; }
    .nav-links.active { display: flex; }
    .hamburger { display: block; }
    .hero-title { font-size: 2.5rem; }
}
/* Additional components (footer, testimonials, program cards) – detailed in full attached file but due to length, the above ensures consistency. Please ensure all images use assets/ folder. */
