:root {
    --green: #2d5016;
    --forest: #1a3a0a;
    --cream: #FFF9F0;
    --sand: #F5E6D3;
    --gold: #d4af37;
    --terracotta: #8b6914;
    --deep-blue: #1a4d7a;
    --charcoal: #2a2a2a;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--charcoal);
    overflow-x: hidden;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 249, 240, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 2px solid var(--green);
    animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

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

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: fit-content;
    text-decoration: none;
    color: inherit;
}

.logo-placeholder {
    width: 45px;
    height: 45px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    font-weight: bold;
    font-size: 1.1rem;
    overflow: hidden;
    flex-shrink: 0;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--green);
    letter-spacing: -0.5px;
}

.tagline {
    font-size: 0.75rem;
    color: var(--gold);
    font-style: italic;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--charcoal);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.cta-button {
    background: var(--green);
    color: white;
    padding: 0.7rem 1.8rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
}

.cta-button:hover {
    background: var(--forest);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(45, 80, 22, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
    flex-shrink: 0;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--green);
    border-radius: 3px;
    transition: all 0.3s ease;
}

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

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

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

/* ===== HERO SECTION ===== */
.hero {
    margin-top: 80px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--cream) 0%, var(--sand) 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(45, 80, 22, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s infinite ease-in-out;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-50px, 50px) rotate(180deg); }
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    line-height: 1.1;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

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

.hero-content .highlight {
    color: var(--green);
    position: relative;
    display: inline-block;
}

.hero-content .highlight::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    height: 15px;
    background: var(--gold);
    opacity: 0.3;
    z-index: -1;
    transform: skew(-12deg);
}

.hero-content p {
    font-size: 1.3rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.primary-btn {
    background: var(--green);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(45, 80, 22, 0.2);
    border: none;
    cursor: pointer;
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(45, 80, 22, 0.35);
}

.secondary-btn {
    background: transparent;
    color: var(--charcoal);
    padding: 1rem 2.5rem;
    border: 2px solid var(--charcoal);
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.hero-image {
    position: relative;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.image-card {
    background: white;
    border-radius: 30px;
    padding: 1.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.image-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--green) 0%, var(--gold) 100%);
    opacity: 0.1;
}

.image-placeholder {
    background: linear-gradient(135deg, var(--green) 0%, var(--forest) 100%);
    height: 500px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    position: relative;
    overflow: hidden;
}

.image-placeholder span {
    font-size: 8rem;
    opacity: 0.3;
    position: absolute;
}

/* ===== STATS SECTION ===== */
.stats {
    background: var(--green);
    padding: 4rem 2rem;
    margin: 4rem 0;
}

.stats-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.stat-item {
    text-align: center;
    color: white;
    animation: fadeInUp 0.6s ease-out both;
}

.stat-item:nth-child(1) { animation-delay: 0.1s; }
.stat-item:nth-child(2) { animation-delay: 0.2s; }
.stat-item:nth-child(3) { animation-delay: 0.3s; }
.stat-item:nth-child(4) { animation-delay: 0.4s; }

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--gold);
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: 6rem 2rem;
    background: white;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--charcoal);
    margin-bottom: 1rem;
}

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

.about-content {
    background: var(--cream);
    padding: 2.5rem;
    border-radius: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.about-text {
    line-height: 1.8;
    color: #555;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.about-text.hidden {
    display: none;
}

.show-more-btn {
    background: var(--green);
    color: white;
    border: none;
    padding: 0.8rem 1.8rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
}

.show-more-btn:hover {
    background: var(--forest);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(45, 80, 22, 0.3);
}

/* ===== PROGRAMS SECTION ===== */
.programs {
    padding: 6rem 2rem;
    background: var(--sand);
}

.programs-container {
    max-width: 1400px;
    margin: 0 auto;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.program-card {
    background: white;
    border-radius: 20px;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    animation: fadeInUp 0.6s ease-out both;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.program-card:nth-child(1) { animation-delay: 0.1s; }
.program-card:nth-child(2) { animation-delay: 0.2s; }
.program-card:nth-child(3) { animation-delay: 0.3s; }

.program-card:hover {
    transform: translateY(-10px);
    border-color: var(--green);
    box-shadow: 0 15px 40px rgba(45, 80, 22, 0.15);
}

.program-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.program-card:hover .program-image img {
    transform: scale(1.05);
}

.program-content {
    padding: 2.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.program-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.program-card p {
    color: #555;
    line-height: 1.6;
}

/* ===== TEAM SECTION ===== */
.team {
    padding: 6rem 2rem;
    background: white;
}

.team-container {
    max-width: 1400px;
    margin: 0 auto;
}

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

.team-card {
    background: var(--cream);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    animation: fadeInUp 0.6s ease-out both;
}

.team-card:nth-child(1) { animation-delay: 0.1s; }
.team-card:nth-child(2) { animation-delay: 0.2s; }
.team-card:nth-child(3) { animation-delay: 0.3s; }
.team-card:nth-child(4) { animation-delay: 0.4s; }
.team-card:nth-child(5) { animation-delay: 0.5s; }
.team-card:nth-child(6) { animation-delay: 0.6s; }

.team-card:hover {
    transform: translateY(-10px);
    border-color: var(--green);
    box-shadow: 0 20px 50px rgba(45, 80, 22, 0.15);
}

.team-photo {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 250px;
}

.team-photo-circle {
    width: 190px;
    height: 190px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--terracotta));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    margin: 1.5rem auto;
    overflow: hidden;
}

.team-info {
    padding: 1.5rem;
    text-align: center;
}

.team-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.team-role {
    color: var(--green);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.hidden-team {
    display: none;
}

.hidden-team.show {
    display: block;
}

/* ===== TESTIMONIAL SECTION ===== */
.testimonial-section {
    background: var(--green);
    color: white;
    padding: 6rem 2rem;
}

.testimonial-container {
    max-width: 900px;
    margin: 2rem auto;
    background: rgba(255, 249, 240, 0.1);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    border: 2px solid rgba(255, 249, 240, 0.2);
}

.testimonial-text {
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.testimonial-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    font-size: 2rem;
    overflow: hidden;
}

.testimonial-name {
    font-weight: bold;
    font-size: 1.1rem;
}

.testimonial-role {
    color: var(--gold);
    font-size: 0.9rem;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.testimonial-nav button {
    background: var(--gold);
    color: var(--green);
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.testimonial-nav button:hover {
    background: white;
    transform: scale(1.05);
}

/* ===== COUNTDOWN SECTION ===== */
.countdown-section {
    background: var(--charcoal);
    color: white;
    padding: 4rem 2rem;
}

.countdown-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.countdown-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.countdown-box {
    background: linear-gradient(135deg, var(--green), var(--forest));
    padding: 2rem 1rem;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.countdown-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.countdown-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.countdown-label {
    font-size: 0.9rem;
    color: #ddd;
}

/* ===== MEMBERS SECTION ===== */
.members {
    padding: 6rem 2rem;
    background: white;
}

.members-container {
    max-width: 1400px;
    margin: 0 auto;
}

.members-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.member-card {
    background: var(--cream);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    animation: fadeInUp 0.6s ease-out both;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.member-card:hover {
    transform: translateY(-10px);
    border-color: var(--green);
    box-shadow: 0 15px 40px rgba(45, 80, 22, 0.15);
}

.member-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--terracotta));
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(45, 80, 22, 0.15);
    overflow: hidden;
}

.member-card:hover .member-photo {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(45, 80, 22, 0.25);
}

.member-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--charcoal);
    font-weight: 700;
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: 6rem 2rem;
    background: var(--charcoal);
    color: white;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.contact-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
}

.contact-item span {
    font-size: 1.5rem;
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 20px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--charcoal);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

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

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

.submit-btn {
    background: var(--green);
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

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

/* ===== FOOTER ===== */
footer {
    background: #0f0f0f;
    color: white;
    padding: 3rem 2rem 1.5rem;
    text-align: center;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--gold);
}

/* ===== BLOG STYLES ===== */
.blog-header {
    margin-top: 80px;
    background: linear-gradient(135deg, var(--green) 0%, var(--forest) 100%);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

.blog-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.blog-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.blog {
    padding: 4rem 2rem;
    background: white;
}

.blog-container {
    max-width: 1400px;
    margin: 0 auto;
}

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

.blog-card {
    background: var(--cream);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    border-color: var(--green);
    box-shadow: 0 15px 40px rgba(45, 80, 22, 0.15);
}

.blog-image {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-date {
    color: var(--green);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.blog-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--charcoal);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-excerpt {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.read-more-btn {
    color: var(--green);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.read-more-btn:hover {
    color: var(--forest);
    transform: translateX(5px);
}

.blog-post-header {
    margin-top: 80px;
    background: linear-gradient(135deg, var(--green) 0%, var(--forest) 100%);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

.blog-post-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.blog-post-section {
    padding: 4rem 2rem;
    background: white;
}

.blog-post-container {
    max-width: 900px;
    margin: 0 auto;
}

.blog-post-featured-image {
    width: 100%;
    height: auto;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 3rem;
}

.blog-post-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.blog-post-content p {
    margin-bottom: 1.5rem;
}

.blog-post-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--charcoal);
    margin: 2.5rem 0 1rem 0;
}

.blog-post-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #eee;
}

.related-posts {
    padding: 4rem 2rem;
    background: var(--sand);
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.related-posts h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--charcoal);
    text-align: center;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
    }

    .primary-btn, .secondary-btn {
        width: 100%;
    }

    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        padding: 0;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        max-height: 400px;
        padding: 1rem 0;
    }

    .nav-links li {
        border-bottom: 1px solid #eee;
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        display: block;
        padding: 1rem 2rem;
        color: var(--charcoal);
    }

    .nav-links a::after {
        display: none;
    }

    .nav-links a:hover {
        background: var(--cream);
        color: var(--green);
    }

    .hamburger {
        display: flex;
    }

    .cta-button {
        display: none;
    }

    .nav-container {
        flex-wrap: wrap;
    }

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

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

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

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

    .contact-container {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

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

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

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

    .nav-container {
        padding: 1rem;
    }

    .logo {
        font-size: 1.2rem;
    }

    .tagline {
        font-size: 0.65rem;
    }

    .stats-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .related-posts-grid {
        grid-template-columns: 1fr;
    }
}
