/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Tahoma, Geneva, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
    font-size: 18px; /* Increased base font size for better accessibility */
    overflow-x: hidden;
}

/* Headings use Arial as secondary font for better hierarchy and contrast */
h1, h2, h3, h4, h5, h6 {
    font-family: Calibri, 'Segoe UI', Arial, sans-serif;
    font-weight: 600;
}

/* Accessibility utilities */
.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
    clip-path: inset(50%) !important;
    border: 0 !important;
    white-space: nowrap !important;
}

/* Skip to content link for keyboard users */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #2c5aa0;
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    z-index: 1000;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 6px;
    outline: 2px solid #fff;
    outline-offset: 2px;
}

/* Header styles */
.main-header {
    background-color: #f8f9fa;
    box-shadow: 0 2px 5px rgba(107, 142, 35, 0.2);
    padding: 1rem 0;
    position: relative;
}

.header-facebook {
    position: absolute;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
}

.header-facebook .social-link {
    background-color: #6b8e23;
}

.header-facebook .social-link:hover {
    background-color: #5a7a1e;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.logo {
    flex-shrink: 0;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}



.logo-img {
    height: auto;
    width: 150px;
}

/* Main navigation bar styles */
.main-nav {
    background-color: #6b8e23;
    height: 80px;
    width: 100%;
    display: flex;
    align-items: center;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    height: 100%;
    position: relative;
}

.nav-buttons {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #6b8e23;
    flex-direction: column;
    height: auto;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 999;
}

.nav-buttons.nav-open {
    max-height: 400px;
}

.nav-btn {
    background: transparent;
    border: none;
    color: white;
    padding: 1rem 2rem;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    border-radius: 0;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    height: auto;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.nav-btn:hover,
.nav-btn.active {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 7px;
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background-color: white;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Mobile Menu Button Active State */
.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

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

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

/* Desktop Navigation */
@media (min-width: 960px) {
    .mobile-menu-btn {
        display: none;
    }
    
    .nav-buttons {
        position: static;
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: stretch;
        height: 100%;
        max-height: none;
        overflow: visible;
        box-shadow: none;
        z-index: auto;
        background-color: transparent;
    }
    
    .nav-btn {
        min-width: 120px;
        height: 100%;
        padding: 12px 0;
        border-bottom: none;
        justify-content: center;
        width: auto;
    }
    
    .nav-btn:last-child {
        border-bottom: none;
    }
    
    .nav-btn:hover,
    .nav-btn.active {
        background-color: white;
        color: #6b8e23;
        font-weight: 700;
    }
}

/* Desktop Header Design */
@media (min-width: 960px) {
    .header-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0;
    }
    
    .nav-list {
        gap: 2rem;
    }
}

/* Footer styles */
.main-footer {
    background-color: #6b8e23;
    padding: 2rem 0;
    margin-top: auto;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}

.company-info h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.company-info p,
.company-details p {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    line-height: 1.4;
}

.company-info p:first-of-type {
    font-style: italic;
    opacity: 0.9;
}

.company-info p:last-of-type {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 1rem;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.15);
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.social-link:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Desktop footer */
@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        gap: 2rem;
        text-align: left;
    }
}

/* Latest News Section Styles */
.latest-news {
    padding: 2rem 0;
    background-color: #fafafa;
}

.news-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    text-align: center;
    color: #6b8e23;
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 2rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #6b8e23;
    border-radius: 2px;
}

.news-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.news-card {
    background-color: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(107, 142, 35, 0.1);
    border: 1px solid rgba(107, 142, 35, 0.1);
    transition: all 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(107, 142, 35, 0.2);
    border-color: rgba(107, 142, 35, 0.3);
}

.news-card h3 {
    color: #6b8e23;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.news-card p {
    color: #333;
    line-height: 1.6;
    font-size: 1rem;
    margin: 1rem 0 0;
}

/* Tablet+ News Grid */
@media (min-width: 480px) {
    .news-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .latest-news {
        padding: 4rem 0;
    }

    .section-title {
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }

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

    .news-card {
        padding: 2rem;
    }

    .news-card h3 {
        font-size: 1.3rem;
    }

    .news-card p {
        font-size: 1rem;
    }
}

/* News card – clickable state */
.news-card--clickable {
    cursor: pointer;
}

.news-card--clickable:focus-visible {
    outline: 3px solid #6b8e23;
    outline-offset: 3px;
}

.news-read-more {
    display: inline-block;
    margin-top: 0.75rem;
    color: #6b8e23;
    font-size: 0.85rem;
    font-weight: 600;
}

/* News modal */
.news-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-modal[hidden] {
    display: none;
}

.news-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.news-modal__dialog {
    position: relative;
    background: #fff;
    border-radius: 12px;
    width: min(90vw, 760px);
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.news-modal__close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
    font-size: 1.25rem;
    line-height: 1;
    cursor: pointer;
    z-index: 1;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.news-modal__close:hover {
    background: #6b8e23;
    color: #fff;
}

.news-modal__close:focus-visible {
    background: #6b8e23;
    color: #fff;
    outline: 3px solid #6b8e23;
    outline-offset: 3px;
}

.news-modal__body {
    overflow-y: auto;
}

.news-modal__img {
    width: 100%;
    height: auto;
    display: block;
}

.news-modal__content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.news-modal__label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #6b8e23;
}

.news-modal__content p {
    color: #333;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

/* Supporters Page Styles */
.supporters-section {
    padding: 2rem 0;
    background-color: #fafafa;
}

.supporters-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-description {
    text-align: center;
    color: #666;
    font-size: 1rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

/* Hero Image Styles */
.hero-image-container {
    text-align: center;
    margin-bottom: 3rem;
}

.hero-image {
    max-width: 100%;
    height: auto;
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(107, 142, 35, 0.1);
}

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

.supporter-card {
    background-color: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(107, 142, 35, 0.1);
    border: 1px solid rgba(107, 142, 35, 0.1);
    transition: all 0.3s ease;
}

.supporter-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(107, 142, 35, 0.2);
    border-color: rgba(107, 142, 35, 0.3);
}

.supporter-card h3 {
    color: #6b8e23;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.supporter-card p {
    color: #333;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.supporter-benefits h4 {
    color: #6b8e23;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    text-align: center;
}

.supporter-benefits ul {
    list-style: none;
    padding: 0;
}

.supporter-benefits li {
    color: #555;
    font-size: 1rem;
    padding: 0.3rem 0;
    text-align: center;
    position: relative;
    padding-left: 1.5rem;
}

.supporter-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #6b8e23;
    font-weight: bold;
}

/* Partners Section */
.partners-section {
    margin-bottom: 4rem;
}

.partners-title {
    color: #6b8e23;
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.partners-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: #6b8e23;
    border-radius: 1px;
}

.partners-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.partner-item {
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(107, 142, 35, 0.1);
    border: 1px solid rgba(107, 142, 35, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.partner-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(107, 142, 35, 0.15);
}

.partner-item h4 {
    color: #6b8e23;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.partner-item p {
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

/* Become a Supporter Section */
.become-supporter {
    background-color: white;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(107, 142, 35, 0.1);
    border: 1px solid rgba(107, 142, 35, 0.1);
    text-align: center;
}

.become-supporter h3 {
    color: #6b8e23;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.become-supporter p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.supporter-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.option-card {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(107, 142, 35, 0.1);
    transition: all 0.3s ease;
}

.option-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(107, 142, 35, 0.15);
}

.option-card h4 {
    color: #6b8e23;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.option-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.donate-btn,
.contact-btn {
    display: inline-block;
    background-color: #6b8e23;
    color: white;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid #6b8e23;
}

.donate-btn:hover,
.contact-btn:hover {
    background-color: white;
    color: #6b8e23;
}

/* Tablet+ Supporters */
@media (min-width: 480px) {
    .supporters-grid,
    .supporter-options {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .supporters-section {
        padding: 4rem 0;
    }

    .section-description {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }

    .supporters-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2rem;
        margin-bottom: 4rem;
    }

    .supporter-card {
        padding: 2rem;
    }

    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .become-supporter {
        padding: 3rem;
    }

    .supporter-options {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }

    .option-card {
        padding: 2rem;
    }
}

/* ── Logo Grid & Carousel ─────────────────────────────── */

/* Shared logo item */
.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    border: 1px solid rgba(107, 142, 35, 0.1);
    transition: box-shadow 0.3s ease;
}

.logo-item img {
    max-height: 80px;
    max-width: 160px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(50%);
    opacity: 0.85;
    transition: filter 0.35s ease, opacity 0.35s ease;
    display: block;
}

.logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.logo-item:hover {
    box-shadow: 0 4px 16px rgba(107, 142, 35, 0.18);
}

/* Carousel */
.logos-carousel-wrapper {
    overflow: hidden;
    margin-bottom: 2.5rem;
    mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.logos-carousel {
    display: flex;
    gap: 1rem;
    width: max-content;
    animation: logos-scroll 35s linear infinite;
}

.logos-carousel-wrapper:hover .logos-carousel,
.logos-carousel-wrapper:focus-within .logos-carousel {
    animation-play-state: paused;
}

/* Carousel pause button */
.carousel-pause-btn {
    position: absolute;
    top: 0.4rem;
    right: 0.4rem;
    z-index: 2;
    background: rgba(255, 255, 255, 0.92);
    border: 2px solid rgba(107, 142, 35, 0.4);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, border-color 0.2s;
}

.carousel-pause-btn:hover,
.carousel-pause-btn:focus-visible {
    background: #6b8e23;
    border-color: #6b8e23;
    color: white;
    outline: 3px solid #6b8e23;
    outline-offset: 2px;
}

.logos-carousel-wrapper {
    position: relative;
}

@media (prefers-reduced-motion: reduce) {
    .logos-carousel {
        animation: none;
    }
}

.logos-carousel .logo-item {
    flex: 0 0 auto;
    width: 160px;
}

@keyframes logos-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Logo Grid */
.logos-grid-section {
    margin-bottom: 3rem;
}

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

@media (min-width: 480px) {
    .logos-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1024px) {
    .logos-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 1.5rem;
    }

    .logo-item img {
        max-height: 100px;
        max-width: 180px;
    }

    .logos-carousel .logo-item {
        width: 180px;
    }
}

/* Projects Page Styles */
.projects-section {
    padding: 2rem 0;
    background-color: #fafafa;
}

.projects-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.projects-category {
    margin-bottom: 4rem;
}

.category-title {
    color: #6b8e23;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #6b8e23;
    border-radius: 2px;
}

.projects-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.project-card {
    background-color: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(107, 142, 35, 0.1);
    border: 1px solid rgba(107, 142, 35, 0.1);
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(107, 142, 35, 0.2);
    border-color: rgba(107, 142, 35, 0.3);
}

.project-header {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.project-header h4 {
    color: #6b8e23;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
    flex: 1;
}

.project-status {
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.project-status.active {
    background-color: #d4edda;
    color: #155724;
}

.project-status.completed {
    background-color: #d1ecf1;
    color: #0c5460;
}

.project-status.upcoming {
    background-color: #fff3cd;
    color: #856404;
}

.project-card p {
    color: #333;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.project-details {
    margin-bottom: 1.5rem;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.detail-item strong {
    color: #6b8e23;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background-color: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 0.5rem;
}

.progress-fill {
    height: 100%;
    background-color: #6b8e23;
    border-radius: 4px;
    transition: width 0.3s ease;
}

/* Progress width utilities (replace inline styles) */
.w-71 { width: 71%; }
.w-73 { width: 73%; }
.w-74 { width: 74%; }

.project-btn {
    display: inline-block;
    background-color: #6b8e23;
    color: white;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid #6b8e23;
    text-align: center;
    width: 100%;
}

.project-btn:hover {
    background-color: white;
    color: #6b8e23;
}

/* Get Involved Section */
.get-involved {
    background-color: white;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(107, 142, 35, 0.1);
    border: 1px solid rgba(107, 142, 35, 0.1);
    text-align: center;
    margin-top: 3rem;
}

.get-involved h3 {
    color: #6b8e23;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.get-involved p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.involvement-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.involvement-card {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(107, 142, 35, 0.1);
    transition: all 0.3s ease;
}

.involvement-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(107, 142, 35, 0.15);
}

.involvement-card h4 {
    color: #6b8e23;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.involvement-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.involvement-btn {
    display: inline-block;
    background-color: #6b8e23;
    color: white;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid #6b8e23;
}

.involvement-btn:hover {
    background-color: white;
    color: #6b8e23;
}

/* Tablet+ Projects */
@media (min-width: 480px) {
    .projects-grid,
    .involvement-options {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (min-width: 768px) {
    .project-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        gap: 0;
    }

    .project-header h4 {
        margin-right: 1rem;
    }
}

@media (min-width: 1024px) {
    .projects-section {
        padding: 4rem 0;
    }

    .category-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

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

    .project-card {
        padding: 2rem;
    }

    .get-involved {
        padding: 3rem;
    }

    .involvement-options {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }

    .involvement-card {
        padding: 2rem;
    }
}

/* Gallery Page Styles */
.gallery-section {
    padding: 2rem 0;
    background-color: #fafafa;
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.gallery-categories {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.category-btn {
    background-color: white;
    border: 2px solid #6b8e23;
    color: #6b8e23;
    padding: 0.4rem 0.8rem;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.8rem;
}

.category-btn:hover,
.category-btn.active {
    background-color: #6b8e23;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(107, 142, 35, 0.3);
}

@media (min-width: 480px) {
    .category-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.gallery-item {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(107, 142, 35, 0.1);
    border: 1px solid rgba(107, 142, 35, 0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(107, 142, 35, 0.2);
    border-color: rgba(107, 142, 35, 0.3);
}

.gallery-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

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

/* Utility: cursor for zoomable images */
.gallery-image img { cursor: zoom-in; }

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.gallery-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
    line-height: 1.4;
}

.load-more-container {
    text-align: center;
    margin-top: 2rem;
}

.load-more-btn {
    background-color: #6b8e23;
    color: white;
    border: 2px solid #6b8e23;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.load-more-btn:hover {
    background-color: white;
    color: #6b8e23;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(107, 142, 35, 0.3);
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 2rem;
}

.lightbox.open {
    display: flex;
    animation: lightboxFade 0.2s ease-in;
}

/* Utility: lock scroll when overlays are open */
.no-scroll {
    overflow: hidden;
}

.lightbox-image {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    padding: 0.2rem 0.5rem;
}

@keyframes lightboxFade {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Albums Grid */
.albums-grid {
    display: none;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.albums-grid.is-active {
    display: grid;
}

.album-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(107, 142, 35, 0.1);
    border: 1px solid rgba(107, 142, 35, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.album-card:hover,
.album-card:focus {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(107, 142, 35, 0.2);
    border-color: rgba(107, 142, 35, 0.4);
    outline: none;
}

.album-card:focus-visible {
    outline: 3px solid #6b8e23;
    outline-offset: 2px;
}

.album-cover {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.album-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.album-card:hover .album-cover img {
    transform: scale(1.05);
}

.album-cover-count {
    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;
    background-color: rgba(107, 142, 35, 0.88);
    color: white;
    padding: 0.25rem 0.65rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.album-info {
    padding: 1rem 1.25rem 1.1rem;
    border-top: 2px solid rgba(107, 142, 35, 0.15);
}

.album-info h3 {
    color: #4a6741;
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.album-info p {
    color: #888;
    font-size: 0.85rem;
    margin: 0;
}

/* Album Detail View */
.album-view {
    display: none;
}

.album-view.is-active {
    display: block;
}

.album-view-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.album-back-btn {
    background: none;
    border: 2px solid #6b8e23;
    color: #6b8e23;
    padding: 0.5rem 1.1rem;
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    font-family: inherit;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.album-back-btn:hover {
    background-color: #6b8e23;
    color: white;
    transform: translateX(-2px);
}

.album-back-btn:focus-visible {
    outline: 3px solid #6b8e23;
    outline-offset: 2px;
}

.album-view-header h3 {
    color: #4a6741;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
}

/* Photo Upload Section */
.photo-upload-section {
    background-color: white;
    padding: 2rem 0;
    margin-top: 2rem;
}

.upload-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.upload-container h3 {
    color: #6b8e23;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.upload-container p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.upload-options {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
}

.upload-btn,
.contact-btn {
    display: inline-block;
    background-color: #6b8e23;
    color: white;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid #6b8e23;
    cursor: pointer;
    font-size: 1rem;
    width: 100%;
    max-width: 300px;
    text-align: center;
}

.upload-btn:hover,
.contact-btn:hover {
    background-color: white;
    color: #6b8e23;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(107, 142, 35, 0.3);
}

/* Gallery Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Visibility helpers for JS-driven filtering */
.is-hidden { display: none !important; }
.is-visible { animation: fadeIn 0.5s ease-in; }

/* Volunteer Page Styles */
.hero-section {
    background-color: #f8f9fa;
    padding: 2rem 0;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    text-align: center;
}

.hero-content h1 {
    color: #6b8e23;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-description {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.cta-btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid;
    font-size: 1rem;
}

.cta-btn.primary {
    background-color: #6b8e23;
    color: white;
    border-color: #6b8e23;
}

.cta-btn.primary:hover {
    background-color: white;
    color: #6b8e23;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(107, 142, 35, 0.3);
}

.cta-btn.secondary {
    background-color: white;
    color: #6b8e23;
    border-color: #6b8e23;
}

.cta-btn.secondary:hover {
    background-color: #6b8e23;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(107, 142, 35, 0.3);
}

.hero-image {
    text-align: center;
}

.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(107, 142, 35, 0.2);
}

/* Why Volunteer Section */
.why-volunteer {
    padding: 2rem 0;
    background-color: white;
}

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

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.benefit-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background-color: #f8f9fa;
    border-radius: 12px;
    border: 1px solid rgba(107, 142, 35, 0.1);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(107, 142, 35, 0.15);
    border-color: rgba(107, 142, 35, 0.3);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    color: #6b8e23;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

/* Volunteer Opportunities Section */
.volunteer-opportunities {
    padding: 2rem 0;
    background-color: #fafafa;
}

.opportunities-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.opportunity-card {
    background-color: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(107, 142, 35, 0.1);
    border: 1px solid rgba(107, 142, 35, 0.1);
    transition: all 0.3s ease;
}

.opportunity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(107, 142, 35, 0.2);
    border-color: rgba(107, 142, 35, 0.3);
}

.opportunity-header {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.opportunity-header h3 {
    color: #6b8e23;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
    flex: 1;
}

.time-commitment {
    background-color: #e9ecef;
    color: #6b8e23;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}

.opportunity-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.opportunity-details {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.opportunity-details li {
    color: #555;
    font-size: 0.9rem;
    padding: 0.3rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.opportunity-details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #6b8e23;
    font-weight: bold;
}

.opportunity-btn {
    display: inline-block;
    background-color: #6b8e23;
    color: white;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid #6b8e23;
    width: 100%;
    text-align: center;
}

.opportunity-btn:hover {
    background-color: white;
    color: #6b8e23;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(107, 142, 35, 0.3);
}

/* Volunteer Stories Section */
.volunteer-stories {
    padding: 2rem 0;
    background-color: white;
}

.stories-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.story-card {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(107, 142, 35, 0.1);
    transition: all 0.3s ease;
}

.story-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(107, 142, 35, 0.15);
}

.story-content p {
    color: #666;
    font-style: italic;
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.story-author {
    text-align: center;
}

.story-author strong {
    color: #6b8e23;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.3rem;
}

.story-author span {
    color: #888;
    font-size: 0.9rem;
}

/* Get Started Section */
.get-started {
    padding: 2rem 0;
    background-color: #fafafa;
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.step-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(107, 142, 35, 0.1);
    border: 1px solid rgba(107, 142, 35, 0.1);
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(107, 142, 35, 0.2);
}

.step-number {
    background-color: #6b8e23;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 auto 1.5rem;
}

.step-card h3 {
    color: #6b8e23;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

/* Contact Form Section */
.contact-form-section {
    padding: 2rem 0;
    background-color: white;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 3rem;
}

.volunteer-form {
    background-color: #f8f9fa;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(107, 142, 35, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 1.5rem;
}

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

.form-group label {
    display: block;
    color: #6b8e23;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: 3px solid #6b8e23;
    outline-offset: 2px;
    border-color: #6b8e23;
    box-shadow: 0 0 0 3px rgba(107, 142, 35, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: #666;
    font-size: 0.9rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 0.2rem;
}

.privacy-link {
    color: #6b8e23;
    text-decoration: underline;
}

.submit-btn {
    background-color: #6b8e23;
    color: white;
    border: 2px solid #6b8e23;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background-color: white;
    color: #6b8e23;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(107, 142, 35, 0.3);
}

/* FAQ Section */
.faq-section {
    padding: 2rem 0;
    background-color: #fafafa;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.faq-item {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(107, 142, 35, 0.1);
    border: 1px solid rgba(107, 142, 35, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(107, 142, 35, 0.15);
}

.faq-question {
    color: #6b8e23;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.faq-answer {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

/* Tablet+ Volunteer Page */
@media (min-width: 480px) {
    .opportunities-grid,
    .faq-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .stories-grid,
    .steps-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    }

    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
}

@media (min-width: 600px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
}

@media (min-width: 768px) {
    .opportunity-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        gap: 0;
    }

    .opportunity-header h3 {
        margin-right: 1rem;
    }
}

@media (min-width: 1024px) {
    .hero-section {
        padding: 4rem 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
        max-width: 800px;
        gap: 2rem;
    }

    .hero-buttons {
        justify-content: center;
    }

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

    .why-volunteer,
    .volunteer-opportunities,
    .volunteer-stories,
    .get-started,
    .contact-form-section,
    .faq-section {
        padding: 4rem 0;
    }

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

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

    .opportunity-card {
        padding: 2rem;
    }

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

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

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

    .volunteer-form {
        padding: 3rem;
    }
}

/* Tablet+ Gallery */
@media (min-width: 480px) {
    .gallery-categories {
        gap: 1rem;
        margin-bottom: 3rem;
    }

    .category-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .albums-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1.5rem;
    }

    .upload-options {
        flex-direction: row;
        align-items: stretch;
    }

    .upload-btn,
    .contact-btn {
        width: auto;
        max-width: none;
        padding: 1rem 2rem;
    }
}

@media (min-width: 1024px) {
    .gallery-section {
        padding: 4rem 0;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2rem;
        margin-bottom: 3rem;
    }

    .albums-grid {
        grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
        gap: 2rem;
    }

    .album-view-header h3 {
        font-size: 1.7rem;
    }

    .photo-upload-section {
        padding: 3rem 0;
    }
}

/* Services Page Styles */

/* Consultations Section */
.consultations-section {
    padding: 2rem 0;
    background-color: #f8f9fa;
}

.consultations-intro {
    color: #666;
    font-size: 1rem;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 2rem;
    text-align: center;
}

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

.consultant-card {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(107, 142, 35, 0.15);
    text-align: center;
    transition: all 0.3s ease;
}

.consultant-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(107, 142, 35, 0.15);
    border-color: rgba(107, 142, 35, 0.3);
}

.consultant-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1rem;
    border: 3px solid rgba(107, 142, 35, 0.3);
}

.consultant-card h3 {
    color: #6b8e23;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.consultant-role {
    color: #888;
    font-size: 0.95rem;
    font-style: italic;
    margin-bottom: 1rem;
}

.consultant-schedule {
    background-color: #f0f4e8;
    border-left: 4px solid #6b8e23;
    padding: 0.8rem 1rem;
    border-radius: 0 6px 6px 0;
    text-align: left;
}

.consultant-schedule strong {
    color: #6b8e23;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.25rem;
}

.consultant-schedule p {
    color: #555;
    font-size: 0.95rem;
    margin: 0;
}

.question-form-container {
    background-color: white;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(107, 142, 35, 0.15);
    max-width: 700px;
    margin: 0 auto;
}

.question-form-container h3 {
    color: #6b8e23;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.question-form-container > p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.question-form button[type="submit"] {
    width: 100%;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    padding: 0.9rem 1.5rem;
}

@media (min-width: 768px) {
    .consultants-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .consultations-section {
        padding: 4rem 0;
    }

    .question-form-container {
        padding: 2.5rem;
    }
}

.services-section {
    padding: 2rem 0;
    background-color: white;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.service-card {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(107, 142, 35, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(107, 142, 35, 0.2);
    border-color: rgba(107, 142, 35, 0.3);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: #6b8e23;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    text-align: left;
}

.service-features li {
    color: #555;
    font-size: 0.9rem;
    padding: 0.3rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #6b8e23;
    font-weight: bold;
}

.service-btn {
    display: inline-block;
    background-color: #6b8e23;
    color: white;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid #6b8e23;
}

.service-btn:hover {
    background-color: white;
    color: #6b8e23;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(107, 142, 35, 0.3);
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 2rem 0;
    background-color: #fafafa;
}

/* Process Section */
.process-section {
    padding: 2rem 0;
    background-color: white;
}

/* Contact Section */
.contact-section {
    padding: 2rem 0;
    background-color: #fafafa;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.contact-card {
    background-color: white;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(107, 142, 35, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(107, 142, 35, 0.2);
    border-color: rgba(107, 142, 35, 0.3);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-card h3 {
    color: #6b8e23;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.contact-card p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.5;
    margin: 0;
}

.contact-card a {
    color: #6b8e23;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: #4a5f1a;
    text-decoration: underline;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.contact-info h3 {
    color: #6b8e23;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-item strong {
    color: #6b8e23;
    font-size: 1rem;
    display: block;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.contact-form h3 {
    color: #6b8e23;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.service-form {
    background-color: white;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(107, 142, 35, 0.1);
}

/* Tablet+ Services Page */
@media (min-width: 480px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .contact-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    }
}

@media (min-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        margin-top: 3rem;
    }
}

@media (min-width: 1024px) {
    .services-section,
    .why-choose-us,
    .process-section,
    .contact-section {
        padding: 4rem 0;
    }

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

    .service-card {
        padding: 2rem;
    }

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

    .contact-card {
        padding: 2rem;
    }

    .service-form {
        padding: 2rem;
    }
}

/* Donation Page Styles */
.organization-info {
    padding: 2rem 0;
    background-color: white;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.info-card {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(107, 142, 35, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(107, 142, 35, 0.2);
    border-color: rgba(107, 142, 35, 0.3);
}

.info-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.info-card h3 {
    color: #6b8e23;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.info-details p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
    text-align: left;
}

.info-details strong {
    color: #6b8e23;
}

.info-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

/* Donation Methods Styles */
.donation-methods {
    padding: 2rem 0;
    background-color: #fafafa;
}

.methods-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.method-card {
    background-color: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(107, 142, 35, 0.1);
    border: 1px solid rgba(107, 142, 35, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(107, 142, 35, 0.2);
    border-color: rgba(107, 142, 35, 0.3);
}

.method-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.method-card h3 {
    color: #6b8e23;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.method-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.bank-details,
.sms-details {
    text-align: left;
    margin-bottom: 1.5rem;
}

.bank-details p,
.sms-details p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.bank-details strong,
.sms-details strong {
    color: #6b8e23;
}

.copy-button-container {
    margin-top: 1rem;
}

.copy-btn {
    background-color: #6b8e23;
    color: white;
    border: 2px solid #6b8e23;
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.copy-btn:hover {
    background-color: white;
    color: #6b8e23;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(107, 142, 35, 0.3);
}

/* Online Donation Form Styles */
.online-donation {
    padding: 2rem 0;
    background-color: white;
}

.donation-form-container {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 3rem;
}

.donation-form {
    background-color: #f8f9fa;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(107, 142, 35, 0.1);
}

/* Impact Section Styles */
.our-impact {
    padding: 2rem 0;
    background-color: #fafafa;
}

.impact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.impact-card {
    background-color: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(107, 142, 35, 0.1);
    border: 1px solid rgba(107, 142, 35, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.impact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(107, 142, 35, 0.2);
    border-color: rgba(107, 142, 35, 0.3);
}

.impact-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #6b8e23;
    margin-bottom: 1rem;
}

.impact-card h3 {
    color: #6b8e23;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.impact-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

/* Donation Impact Examples Styles */
.donation-impact {
    padding: 2rem 0;
    background-color: white;
}

.impact-examples-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.example-card {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(107, 142, 35, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.example-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(107, 142, 35, 0.2);
    border-color: rgba(107, 142, 35, 0.3);
}

.example-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.example-card h3 {
    color: #6b8e23;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.example-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

/* Tablet+ Donation Page */
@media (min-width: 480px) {
    .info-grid,
    .methods-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .impact-grid,
    .impact-examples-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
}

@media (min-width: 1024px) {
    .organization-info,
    .donation-methods,
    .online-donation,
    .our-impact,
    .donation-impact {
        padding: 4rem 0;
    }

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

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

    .info-card,
    .method-card,
    .impact-card,
    .example-card {
        padding: 2rem;
    }

    .donation-form {
        padding: 3rem;
    }
}

/* Par Mums Page Styles */
.mission-section {
    padding: 2rem 0;
    background-color: white;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.mission-card {
    text-align: center;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 12px;
    border: 1px solid rgba(107, 142, 35, 0.1);
    transition: all 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(107, 142, 35, 0.15);
    border-color: rgba(107, 142, 35, 0.3);
}

.mission-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.mission-card h3 {
    color: #6b8e23;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

/* History Section */
.history-section {
    padding: 2rem 0;
    background-color: #fafafa;
}

.timeline {
    position: relative;
    margin-top: 2rem;
    padding-left: 1rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: #6b8e23;
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 1.5rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -0.5rem;
    top: 0.5rem;
    width: 1rem;
    height: 1rem;
    background-color: #6b8e23;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 3px #6b8e23;
}

.timeline-date {
    position: relative;
    left: 0;
    top: 0;
    display: inline-block;
    margin-bottom: 1rem;
    background-color: #6b8e23;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
}

.timeline-content {
    background-color: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(107, 142, 35, 0.1);
    border: 1px solid rgba(107, 142, 35, 0.1);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(107, 142, 35, 0.2);
}

.timeline-content h3 {
    color: #6b8e23;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.timeline-content p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

/* Team Section */
.team-section {
    padding: 2rem 0;
    background-color: white;
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.team-card {
    text-align: center;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 12px;
    border: 1px solid rgba(107, 142, 35, 0.1);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(107, 142, 35, 0.15);
    border-color: rgba(107, 142, 35, 0.3);
}

.team-avatar {
    width: 140px;
    height: 140px;
    margin: 0 auto 1.25rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(107, 142, 35, 0.3);
}

.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.team-card h3 {
    color: #6b8e23;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.team-position {
    color: #6b8e23;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.team-card p:last-child {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Statutes Section */
.statutes-section {
    padding: 2rem 0;
    background-color: #fafafa;
}

.toc-container {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(107, 142, 35, 0.1);
    border: 1px solid rgba(107, 142, 35, 0.1);
    margin-bottom: 3rem;
}

.toc-container h3 {
    color: #6b8e23;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
}

.toc-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.8rem;
}

.toc-list li a {
    display: block;
    padding: 1rem;
    background-color: #f8f9fa;
    color: #6b8e23;
    text-decoration: none;
    border-radius: 8px;
    border: 1px solid rgba(107, 142, 35, 0.1);
    transition: all 0.3s ease;
    font-weight: 500;
}

.toc-list li a:hover {
    background-color: #6b8e23;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(107, 142, 35, 0.3);
}

.statute-content {
    background-color: white;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(107, 142, 35, 0.1);
    border: 1px solid rgba(107, 142, 35, 0.1);
}

.statute-chapter {
    margin-bottom: 3rem;
}

.statute-chapter:last-child {
    margin-bottom: 0;
}

.statute-chapter h3 {
    color: #6b8e23;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid #6b8e23;
}

.statute-article {
    margin-bottom: 2rem;
    padding-left: 1rem;
}

.statute-article:last-child {
    margin-bottom: 0;
}

.statute-article h4 {
    color: #6b8e23;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.statute-article p {
    color: #333;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
    text-align: justify;
}

.statute-article ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.statute-article li {
    color: #333;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

/* Tablet+ Par Mums Page */
@media (min-width: 480px) {
    .mission-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    }

    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    }

    .toc-list {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 1rem;
    }
}

@media (min-width: 768px) {
    .timeline {
        padding-left: 2rem;
    }

    .timeline-item {
        padding-left: 2rem;
    }

    .timeline-date {
        position: absolute;
        left: -4rem;
        top: 0;
        display: block;
        margin-bottom: 0;
    }
}

@media (min-width: 1024px) {
    .mission-section,
    .history-section,
    .team-section,
    .statutes-section {
        padding: 4rem 0;
    }

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

    .mission-card {
        padding: 2rem 1.5rem;
    }

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

    .team-card {
        padding: 2rem 1.5rem;
    }

    .toc-list {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .statute-content {
        padding: 3rem;
    }

    .statute-chapter h3 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
}

/* Dropdown Navigation */
.nav-dropdown {
    display: flex;
    flex-direction: column;
}

.nav-dropdown-menu {
    background-color: #5a7a1e;
}

.nav-dropdown-menu a {
    color: white;
    padding: 0.75rem 2rem 0.75rem 3.5rem;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s ease;
    display: block;
}

.nav-dropdown-menu a:last-child {
    border-bottom: none;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.active {
    background-color: rgba(255, 255, 255, 0.1);
}

@media (min-width: 960px) {
    .nav-dropdown {
        position: relative;
        height: 100%;
        flex-direction: row;
        align-items: stretch;
    }

    .nav-dropdown-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        min-width: 160px;
        background-color: #6b8e23;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        z-index: 1000;
        flex-direction: column;
    }

    .nav-dropdown:hover .nav-dropdown-menu,
    .nav-dropdown.is-open .nav-dropdown-menu {
        display: flex;
    }

    .nav-dropdown-menu a {
        padding: 12px 20px;
        white-space: nowrap;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-dropdown-menu a:hover,
    .nav-dropdown-menu a.active {
        background-color: white;
        color: #6b8e23;
    }
}

/* Video Page */
.video-section {
    padding: 2rem 0;
    background-color: #fafafa;
}

.video-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(107, 142, 35, 0.15);
    margin-top: 2rem;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* News image */
.news-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

