/* =========================
   1. CSS Variables
========================= */

:root {
    --primary-color: #006400; /* Dark Green */
    --secondary-color: #ffd700; /* Gold */
    --hover-color: #004d00; /* Darker Green */
    --light-background: #fff;
    --light-text: #555;
    --text-color: #333;
    --background-color: #f4f4f4;
    --border-color: #ccc;
    --gap-size: 20px; /* Space between logos */
    --padding-size: 10px; /* Padding around each logo */
}

/* =========================
   2. Global Styles
========================= */

/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Apply a global font and basic body styles */
body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    scroll-behavior: smooth; /* Smooth scrolling */
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* Responsive Images */
.responsive-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Section Separator Styles */
.section-separator {
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 20px auto;
    border: none;
    border-radius: 2px;
}

/* =========================
   3. Header Styles
========================= */

header {
    background: var(--primary-color);
    color: #fff;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo h1 {
    font-size: 24px;
    transition: font-size 0.3s ease;
}

/* Navigation Styles */
nav {
    display: flex;
    align-items: center;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    padding: 8px 16px;
    border: 2px solid transparent;
    border-radius: 5px;
    transition: background 0.3s ease, border 0.3s ease;
}

.nav-links li a:hover,
.nav-links li a.active {
    background: var(--secondary-color);
    color: var(--primary-color);
    border-color: var(--secondary-color);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    font-size: 24px;
    cursor: pointer;
    margin-left: 20px;
    position: relative;
}

/* Hamburger Icon Animation */
.hamburger.toggle .fa-bars {
    display: none;
}

.hamburger.toggle::before,
.hamburger.toggle::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 3px;
    background: #fff;
    transition: all 0.3s ease;
}

.hamburger.toggle::before {
    transform: rotate(45deg);
    top: 0;
}

.hamburger.toggle::after {
    transform: rotate(-45deg);
    top: 0;
}

/* =========================
   4. Hero Section Styles
========================= */

.hero-single {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.hero-single .hero-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-single .hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
    background: rgba(0, 100, 0, 0.6);
    padding: 30px;
    border-radius: 10px;
    animation: floatText 6s ease-in-out infinite;
}

.hero-single .hero-text h2 {
    font-size: 3em;
    margin-bottom: 15px;
}

.hero-single .hero-text p {
    font-size: 1.5em;
    margin-bottom: 25px;
}

.hero-single .hero-text .btn {
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2em;
    transition: background 0.3s ease;
}

.hero-single .hero-text .btn:hover {
    background: #e5c100;
}

/* Floating Animation */
@keyframes floatText {
    0% {
        transform: translate(-50%, -50%) translateY(0px);
    }
    50% {
        transform: translate(-50%, -50%) translateY(-20px);
    }
    100% {
        transform: translate(-50%, -50%) translateY(0px);
    }
}

/* Responsive Adjustments for Hero Section */
@media (max-width: 768px) {
    .hero-single {
        height: 70vh;
    }

    .hero-single .hero-text h2 {
        font-size: 2em;
    }

    .hero-single .hero-text p {
        font-size: 1em;
    }

    .hero-single .hero-text .btn {
        font-size: 1em;
        padding: 10px 20px;
    }
}

/* =========================
   5. Slider Styles
========================= */

.slider {
    width: 100%;
    height: 500px;
    overflow: hidden;
    position: relative;
}

.slides {
    display: flex;
    width: 300%;
    height: 100%;
    transition: transform 0.6s ease;
}

.slide {
    width: 100%;
    flex-shrink: 0;
    display: none;
}

.slide.active {
    display: block;
}

.slide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.navigation-dots {
    position: absolute;
    bottom: 15px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: var(--primary-color);
}

/* Hide the manual navigation dots on mobile */
@media (max-width: 768px) {
    .navigation-dots {
        display: none;
    }
}

/* =========================
   6. Info Boxes Styles
========================= */

.info-boxes {
    padding: 60px 20px;
    background: var(--background-color);
    text-align: center;
}

.info-boxes h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.section-separator {
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 0 auto 40px auto;
    border: none;
    border-radius: 2px;
}

.info-boxes .container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 20px;
}

.info-boxes .box {
    background: var(--light-background);
    padding: 30px 20px;
    border-radius: 10px;
    flex: 1 1 250px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.info-boxes .box:hover {
    transform: translateY(-10px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    background: #e5ffe5;
}

.info-boxes .box h3 {
    font-size: 1.3em;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.info-boxes .box p {
    flex-grow: 1;
    font-size: 1em;
    margin-bottom: 20px;
    color: var(--text-color);
    text-align: left;
}

.info-boxes .btn {
    align-self: center;
    padding: 12px 25px;
    background-color: var(--primary-color);
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.info-boxes .btn:hover {
    background-color: var(--hover-color);
    transform: scale(1.05);
}

/* Responsive Adjustments for Info Boxes */
@media (max-width: 768px) {
    .info-boxes .container {
        flex-direction: column;
        align-items: center;
    }

    .info-boxes .box {
        flex: 1 1 80%;
    }

    .info-boxes .box h3 {
        font-size: 1.5em;
    }
}

/* =========================
   7. Other Sections Styles
========================= */

/* Common Styles for Multiple Sections */
.about, .mission, .activities, .testimonials, .cta, .statistics, 
.who-we-are, .our-history, .our-values, .our-team, .our-achievements, 
.what-we-do, .program-areas, .impact-statistics, .success-stories, 
.staff-intro, .staff-members, .leadership-team, .volunteer-intro, 
.why-volunteer, .volunteer-opportunities, .volunteer-form-section, 
.volunteer-testimonials, .contact-intro, .contact-info, .contact-form-section, 
.map-section {
    padding: 60px 0;
}

/* Section Headings */
.about h2, .mission h2, .activities h2, .testimonials h2, .cta h2, .statistics h2,
.who-we-are h2, .our-history h2, .our-values h2, .our-team h2, .our-achievements h2,
.what-we-do h2, .program-areas h2, .impact-statistics h2, .success-stories h2,
.staff-intro h2, .staff-members h2, .leadership-team h2, .volunteer-intro h2,
.why-volunteer h2, .volunteer-opportunities h2, .volunteer-form-section h2,
.volunteer-testimonials h2, .contact-intro h2, .contact-info h2, .contact-form-section h2,
.map-section h2 {
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-family: 'Roboto', sans-serif;
}

/* Section Paragraphs */
.about p, .mission p, .testimonials p, .activities p,
.who-we-are p, .our-history p, .our-values p, .our-team p, .our-achievements p,
.what-we-do p, .program-areas p, .impact-statistics p, .success-stories p,
.staff-intro p, .staff-members p, .leadership-team p, .volunteer-intro p,
.why-volunteer p, .volunteer-opportunities p, .volunteer-form-section p,
.volunteer-testimonials p, .contact-intro p, .contact-info p, .contact-form-section p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    color: var(--light-text);
    font-size: 18px;
}

/* Buttons */
.read-more-btn, .btn {
    display: inline-block;
    padding: 10px 20px;
    margin: 10px 0;
    background-color: var(--primary-color);
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    font-size: 1em;
    cursor: pointer;
}

.read-more-btn:hover, .btn:hover {
    background-color: var(--hover-color);
}

.read-more-btn {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

/* =========================
   8. Statistics Section Styles
========================= */

.statistics {
    background: var(--background-color);
    padding: 60px 0;
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    text-align: center;
}

.stat-item {
    flex: 1 1 200px;
    margin: 20px;
}

.stat-item .number {
    font-size: 48px;
    color: var(--primary-color);
}

.stat-item p {
    margin-top: 10px;
    font-size: 18px;
    color: var(--light-text);
}

/* =========================
   9. Activities Section Styles
========================= */

.activity-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
}

.activity-item {
    flex: 1 1 30%;
    margin: 10px;
    text-align: center;
}

.activity-item img {
    display: block;
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.activity-item h3 {
    margin: 15px 0 10px 0;
    color: var(--primary-color);
}

.activity-item p {
    color: var(--light-text);
}

/* =========================
   10. Testimonials Section Styles
========================= */

.testimonials {
    padding: 60px 20px;
    background-color: #f5f5f5;
    text-align: center;
}

.testimonials .container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonials h2 {
    font-size: 2.5em;
    margin-bottom: 10px;
    color: var(--primary-color);
    font-family: 'Roboto', sans-serif;
}

.testimonials .section-separator {
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 0 auto 40px auto;
    border: none;
}

/* Testimonial Slider */
.testimonial-slider {
    position: relative;
    overflow: hidden;
}

.testimonial {
    display: none;
    padding: 20px;
    background-color: var(--light-background);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.testimonial.active {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

.testimonial p {
    font-size: 1.1em;
    color: var(--light-text);
    font-style: italic;
    margin-bottom: 20px;
    font-family: 'Roboto', sans-serif;
}

.testimonial h4 {
    font-size: 1em;
    color: var(--primary-color);
    margin-top: 10px;
    font-family: 'Roboto', sans-serif;
}

/* Navigation Controls */
.testimonial-navigation {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.testimonial-navigation .prev,
.testimonial-navigation .next {
    cursor: pointer;
    font-size: 2em;
    color: var(--primary-color);
    user-select: none;
    padding: 10px;
    transition: color 0.3s ease;
}

.testimonial-navigation .prev:hover,
.testimonial-navigation .next:hover {
    color: #0056b3;
}

/* Dots Indicators */
.testimonial-dots {
    margin-top: 20px;
}

.testimonial-dots .dot {
    height: 15px;
    width: 15px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.testimonial-dots .dot.active,
.testimonial-dots .dot:hover {
    background-color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .testimonials h2 {
        font-size: 2em;
    }

    .testimonial p {
        font-size: 1em;
    }

    .testimonial-navigation .prev,
    .testimonial-navigation .next {
        font-size: 1.5em;
    }

    .testimonial-dots .dot {
        height: 12px;
        width: 12px;
    }
}

/* =========================
   11. Call to Action (CTA) Section Styles
========================= */

.cta {
    background: var(--primary-color);
    color: #fff;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
}

.cta h2 {
    font-size: 32px;
    margin-bottom: 10px;
    color: #fff;
}

.cta p {
    font-size: 18px;
    color: #fff;
    max-width: 800px;
    margin: 0 auto 20px auto;
}

.cta .btn {
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 10px 20px;
    margin: 10px;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
    font-size: 16px;
}

.cta .btn:hover {
    background: #e5c100;
}

/* Optional: Social Media Buttons Inside CTA */
.cta .social-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
}

.cta .social-buttons .btn {
    background: #fff;
    color: var(--primary-color);
}

.cta .social-buttons .btn:hover {
    background: #f0f0f0;
}

/* =========================
   12. Footer Styles
========================= */

footer {
    background: #333;
    color: #fff;
    padding: 40px 0;
    text-align: center;
}

.footer-info, .footer-links, .social-media {
    margin-bottom: 20px;
}

.footer-info h3 {
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.footer-info p {
    margin-bottom: 5px;
    color: #fff;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.social-media a {
    margin: 0 5px;
}

.social-media img {
    width: 30px;
    height: 30px;
    transition: opacity 0.3s ease;
}

.social-media img:hover {
    opacity: 0.7;
}

footer p {
    margin-top: 20px;
    font-size: 14px;
    color: #aaa;
}

/* Responsive Footer Layout */
@media (max-width: 768px) {
    .footer-info, .footer-links, .social-media {
        margin-bottom: 15px;
    }

    .footer-links a {
        display: inline-block;
        margin: 5px 0;
    }
}

/* =========================
   13. Responsive Styles
========================= */

@media (max-width: 768px) {
    /* Adjust container for header */
    header .container {
        flex-direction: row;
        justify-content: space-between;
    }

    /* Navigation Menu */
    .nav-links {
        position: fixed;
        right: 0;
        top: 0;
        height: 100vh;
        background: var(--primary-color);
        flex-direction: column;
        align-items: center;
        width: 200px;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
    }

    .nav-links li {
        margin: 30px 0;
    }

    .nav-active {
        transform: translateX(0);
    }

    /* Hamburger Menu */
    .hamburger {
        display: block;
    }

    /* Adjust Slider for Mobile */
    .slider {
        height: 300px;
    }

    .slide img {
        height: 300px;
    }

    /* Adjust Info Boxes on Mobile */
    .info-boxes .container {
        flex-direction: column;
        align-items: center;
    }

    .info-boxes .box {
        flex: 1 1 80%;
    }

    /* Adjust Navigation Links Text Size */
    .nav-links li a {
        font-size: 18px;
        padding: 10px 20px;
    }

    /* Adjusted Section Headings and Content */
    .about h2, .mission h2, .activities h2, .testimonials h2, .cta h2, .statistics h2,
    .who-we-are h2, .our-history h2, .our-values h2, .our-team h2, .our-achievements h2,
    .what-we-do h2, .program-areas h2, .impact-statistics h2, .success-stories h2,
    .staff-intro h2, .staff-members h2, .leadership-team h2, .volunteer-intro h2,
    .why-volunteer h2, .volunteer-opportunities h2, .volunteer-form-section h2,
    .volunteer-testimonials h2, .contact-intro h2, .contact-info h2, .contact-form-section h2,
    .map-section h2 {
        font-size: 28px;
    }

    .about p, .mission p, .testimonials p, .activities p,
    .who-we-are p, .our-history p, .our-values p, .our-team p, .our-achievements p,
    .what-we-do p, .program-areas p, .impact-statistics p, .success-stories p,
    .staff-intro p, .staff-members p, .leadership-team p, .volunteer-intro p,
    .why-volunteer p, .volunteer-opportunities p, .volunteer-form-section p,
    .volunteer-testimonials p, .contact-intro p, .contact-info p, .contact-form-section p {
        font-size: 16px;
    }

    /* Adjust Team Member Images */
    .team-member img,
    .leadership-member img {
        width: 120px;
        height: 120px;
    }

    /* Adjust Timeline Icons on Mobile */
    .timeline-item .timeline-icon {
        left: -12px;
        right: auto;
    }

    .timeline-item:nth-child(even) .timeline-icon {
        left: -12px;
        right: auto;
    }
}

/* =========================
   14. Additional Styles (Optional)
========================= */

/* FadeIn Animation */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Enhanced Confirmation Message */
.confirmation-message.show {
    display: block;
    animation: fadeIn 1s ease-in-out;
}

/* =========================
   15. Page-Specific Styles
========================= */

/* Who We Are Page Styles */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 40px auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background-color: var(--primary-color);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
}

.timeline-item {
    padding: 20px 40px;
    position: relative;
    width: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    right: -17px;
    background-color: #fff;
    border: 4px solid var(--primary-color);
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-item .timeline-icon {
    position: absolute;
    top: 15px;
    left: -12px;
    background-color: var(--primary-color);
    color: #fff;
    padding: 10px;
    border-radius: 50%;
    z-index: 1;
}

.timeline-item:nth-child(even) .timeline-icon {
    left: auto;
    right: -12px;
}

.timeline-item .timeline-content {
    padding: 20px;
    background-color: #fff;
    position: relative;
    border-radius: 6px;
}

.timeline-item h3 {
    margin-top: 0;
    color: var(--primary-color);
}

.timeline-item p {
    color: var(--light-text);
}

/* Programs Grid */
.programs-grid,
.achievements-grid,
.values-grid,
.team-grid,
.leadership-grid,
.benefits-grid,
.opportunities-grid,
.stories-grid,
.testimonials-grid,
.success-stories-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
}

/* Program Item */
.program-item,
.achievement-item,
.value-item,
.team-member,
.leadership-member,
.benefit-item,
.opportunity-item,
.story-item,
.testimonial-item {
    flex: 1 1 250px;
    text-align: center;
    padding: 20px;
    background: var(--light-background);
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.program-item:hover,
.achievement-item:hover,
.value-item:hover,
.team-member:hover,
.leadership-member:hover,
.benefit-item:hover,
.opportunity-item:hover,
.story-item:hover,
.testimonial-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    background: #e5ffe5;
}

/* Icons and Images */
.program-item i,
.achievement-item i,
.value-item i,
.benefit-item i,
.opportunity-item i,
.story-item img,
.testimonial-item img,
.team-member img,
.leadership-member img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
}

/* Adjust Images for Mobile */
@media (max-width: 768px) {
    .team-member img,
    .leadership-member img {
        width: 120px;
        height: 120px;
    }
}

/* Volunteer Form Styles */
.volunteer-form,
.contact-form,
.donation-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 1.1em;
    color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1em;
    color: var(--text-color);
}

.form-group textarea {
    resize: vertical;
}

/* =========================
   16. Contact Us Page Styles
========================= */

/* Contact Introduction Section */
.contact-intro {
    padding: 60px 0;
    background: var(--light-background);
    text-align: center;
}

.contact-intro p {
    font-size: 18px;
    color: var(--light-text);
    max-width: 800px;
    margin: 20px auto 0 auto;
}

/* Contact Information Section */
.contact-info {
    padding: 60px 0;
    background: var(--background-color);
}

.info-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
}

.info-item {
    flex: 1 1 200px;
    text-align: center;
    padding: 20px;
    background: var(--light-background);
    border-radius: 8px;
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.info-item:hover {
    transform: translateY(-5px);
    background: #e5ffe5;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.info-item i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.info-item h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.info-item p {
    color: var(--light-text);
    font-size: 16px;
}

/* Contact Form Section */
.contact-form-section {
    padding: 60px 0;
    background: var(--light-background);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
}

.contact-form .required {
    color: red;
    margin-left: 2px;
}

.contact-form .btn {
    background: var(--primary-color);
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact-form .btn:hover {
    background: var(--hover-color);
}

/* =========================
   17. Donation Page Styles
========================= */

/* Donation CTA Section with updated colors */
#donation-cta {
    background-color: var(--primary-color);
    padding: 50px 0;
    text-align: center;
}

#donation-cta h2 {
    font-size: 2.5em;
    color: #fff;
}

#donation-cta p {
    font-size: 1.2em;
    color: #fff;
    max-width: 600px;
    margin: 0 auto 30px;
}

#donation-cta .donation-btn {
    background-color: var(--secondary-color);
    color: #333;
    padding: 15px 30px;
    font-size: 1.2em;
    border-radius: 5px;
    text-decoration: none;
}

#donation-cta .donation-btn:hover {
    background-color: #ffcc00;
}

/* Donation Form */
.donation-form {
    background: var(--light-background);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.donation-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.donation-form .form-group {
    margin-bottom: 20px;
}

.donation-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: var(--primary-color);
}

.donation-form label i {
    margin-right: 8px;
    color: var(--primary-color);
}

.donation-form input,
.donation-form select,
.donation-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1em;
    transition: border-color 0.3s ease;
}

.donation-form input:focus,
.donation-form select:focus,
.donation-form textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

.donation-form input:hover,
.donation-form select:hover,
.donation-form textarea:hover {
    border-color: var(--hover-color);
}

.donation-form .input-group {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.donation-form .input-group-text {
    background: #f0f0f0;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-right: none;
    border-radius: 4px 0 0 4px;
    font-weight: bold;
    color: var(--primary-color);
    flex: 0 0 50px;
    text-align: center;
}

.donation-form .input-group input {
    border-radius: 0 4px 4px 0;
}

.donation-form .btn {
    background: var(--primary-color);
    color: var(--light-background);
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
    font-size: 1em;
    font-weight: bold;
}

.donation-form .btn:hover {
    background: var(--hover-color);
}

/* Confirmation Message */
.confirmation-message {
    margin-top: 20px;
    font-size: 1em;
    color: green;
    display: none;
    animation: fadeIn 1s ease-in-out;
}

/* Responsive Adjustments for Donation Page */
@media (max-width: 768px) {
    /* Adjust Donation Section on Mobile */
    .donation-section {
        padding: 40px 20px;
    }

    .donation-section h2 {
        font-size: 2em;
    }

    .donation-section p {
        font-size: 1em;
    }

    .donation-form {
        padding: 20px;
    }
}

/* =========================
   18. What We Do Page Styles
========================= */

/* What We Do Section */
.what-we-do {
    padding: 60px 0;
    background: var(--light-background);
}

.what-we-do p {
    font-size: 18px;
    color: var(--light-text);
}

/* Program Areas Section */
.program-areas {
    padding: 60px 0;
    background: var(--background-color);
}

.programs-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
}

.program-item {
    flex: 1 1 250px;
    text-align: center;
    padding: 20px;
    background: var(--light-background);
    border-radius: 8px;
    transition: transform 0.3s ease, background 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.program-item:hover {
    transform: translateY(-10px);
    background: #e5ffe5;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.program-item i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.program-item h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.program-item p {
    color: var(--light-text);
    font-size: 16px;
}

/* Impact Statistics Section */
.impact-statistics {
    padding: 60px 0;
    background: var(--light-background);
}

.statistics-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
}

.stat-item {
    flex: 1 1 150px;
    text-align: center;
    padding: 20px;
    background: var(--background-color);
    border-radius: 8px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: #e5ffe5;
}

.stat-item .number {
    font-size: 48px;
    color: var(--primary-color);
}

.stat-item p {
    margin-top: 10px;
    font-size: 18px;
    color: var(--light-text);
}

/* Success Stories Section */
.success-stories {
    padding: 60px 0;
    background: var(--background-color);
}

.stories-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
}

.story-item {
    flex: 1 1 300px;
    text-align: center;
    padding: 20px;
    background: var(--light-background);
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.story-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.story-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.story-item h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.story-item p {
    color: var(--light-text);
    font-size: 16px;
}

.story-item .btn {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 16px;
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.story-item .btn:hover {
    background: var(--hover-color);
}

/* Call to Action Section */
.cta {
    padding: 60px 0;
    background: var(--primary-color);
    color: #fff;
    text-align: center;
}

.cta h2 {
    color: #fff;
}

.cta p {
    font-size: 18px;
    margin: 20px 0;
}

.cta .btn {
    display: inline-block;
    padding: 10px 20px;
    margin: 10px;
    background: var(--secondary-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.cta .btn:hover {
    background: #e5c100;
}

/* =========================
   19. Advanced Footer Styles
========================= */

/* Footer Container */
.adv-footer {
    background-color: var(--primary-color);
    color: #fff;
    padding: 60px 0 20px 0;
    position: relative;
    font-size: 0.9em;
}

.adv-footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
}

.adv-footer-section {
    flex: 1 1 200px;
    margin: 20px;
}

.adv-footer-section h3 {
    margin-bottom: 15px;
    font-size: 1.2em;
    border-bottom: 2px solid var(--secondary-color);
    display: inline-block;
    padding-bottom: 5px;
}

.adv-footer-section p,
.adv-footer-section ul,
.adv-footer-section form {
    margin-bottom: 15px;
}

.adv-footer-section ul {
    list-style: none;
    padding: 0;
}

.adv-footer-section ul li {
    margin-bottom: 10px;
}

.adv-footer-section ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.adv-footer-section ul li a:hover {
    color: var(--secondary-color);
}

.adv-contact-info a,
.adv-additional-resources a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.adv-contact-info a:hover,
.adv-additional-resources a:hover {
    color: var(--secondary-color);
}

/* Newsletter Subscription */
.adv-newsletter-form {
    display: flex;
    flex-wrap: wrap;
}

.adv-newsletter-form input[type="email"] {
    flex: 1 1 200px;
    padding: 10px;
    border: none;
    border-radius: 4px 0 0 4px;
    outline: none;
}

.adv-newsletter-form .adv-btn {
    padding: 10px 20px;
    border: none;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-weight: bold;
}

.adv-newsletter-form .adv-btn:hover {
    background-color: #e5c100;
}

.adv-newsletter-message {
    margin-top: 10px;
    color: #00ff00;
    display: none;
    animation: fadeIn 1s ease-in-out;
}

.adv-newsletter-message.show {
    display: block;
}

/* Additional Resources */
.adv-additional-resources {
    background-color: var(--secondary-color);
    padding: 20px 0;
    text-align: center;
}

.adv-additional-resources a {
    margin: 0 15px;
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.adv-additional-resources a:hover {
    color: #fff;
}

/* Back to Top Button */
.adv-back-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border: none;
    padding: 10px 15px;
    border-radius: 50%;
    font-size: 1.5em;
    cursor: pointer;
    display: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    z-index: 1000;
}

.adv-back-to-top:hover {
    background-color: #e5c100;
    transform: scale(1.1);
}

/* Footer Bottom */
.adv-footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #aaa;
}

/* Responsive Footer Layout */
@media (max-width: 768px) {
    .adv-footer-container {
        flex-direction: column;
        align-items: center;
    }

    .adv-footer-section {
        margin: 10px 0;
    }

    .adv-newsletter-form {
        flex-direction: column;
    }

    .adv-newsletter-form input[type="email"],
    .adv-newsletter-form .adv-btn {
        width: 100%;
        border-radius: 4px;
    }

    .adv-newsletter-form .adv-btn {
        margin-top: 10px;
        border-radius: 4px;
    }

    .adv-additional-resources a {
        display: block;
        margin: 10px 0;
    }

    /* Responsive Font Sizes for Footer */
    .adv-about-text,
    .adv-contact-text {
        font-size: 1em;
    }
}

/* =========================
   20. Sitemap Page Styles
========================= */

/* Container for Sitemap */
.sitemap {
    padding: 60px 20px;
    background-color: var(--background-color);
    color: var(--text-color);
    font-family: 'Roboto', sans-serif;
}

/* Headings */
.sitemap h2 {
    font-size: 2.5em;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 10px;
}

/* Sitemap List */
.sitemap-list {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1em;
    line-height: 1.6;
}

.sitemap-list > li {
    margin-bottom: 10px;
}

.sitemap-list > li > a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.sitemap-list > li > a:hover {
    color: var(--hover-color);
    text-decoration: underline;
}

.sitemap-list ul {
    list-style-type: circle;
    padding-left: 40px;
    margin-top: 5px;
}

.sitemap-list ul li a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.sitemap-list ul li a:hover {
    color: var(--hover-color);
    text-decoration: underline;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .sitemap h2 {
        font-size: 2em;
    }

    .sitemap-list {
        font-size: 1em;
        padding-left: 20px;
    }

    .sitemap-list ul {
        padding-left: 20px;
    }
}

/* =========================
   21. Privacy Policy Page Styles
========================= */

/* Container for Privacy Policy */
.privacy-policy {
    padding: 60px 20px;
    background-color: var(--background-color);
    color: var(--text-color);
    font-family: 'Roboto', sans-serif;
}

/* Headings */
.privacy-policy h2 {
    font-size: 2.5em;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 10px;
}

.privacy-policy h3 {
    font-size: 1.8em;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 10px;
}

/* Paragraphs */
.privacy-policy p {
    font-size: 1.1em;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 20px auto;
    text-align: justify;
}

/* Lists */
.privacy-policy ul {
    list-style-type: disc;
    padding-left: 40px;
    max-width: 800px;
    margin: 0 auto 20px auto;
}

.privacy-policy ul li {
    margin-bottom: 10px;
    font-size: 1.1em;
}

/* Links */
.privacy-policy a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.privacy-policy a:hover {
    color: var(--hover-color);
    text-decoration: underline;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .privacy-policy h2 {
        font-size: 2em;
    }

    .privacy-policy h3 {
        font-size: 1.5em;
    }

    .privacy-policy p, .privacy-policy ul li {
        font-size: 1em;
    }

    .privacy-policy ul {
        padding-left: 20px;
    }
}

/* =========================
   22. Terms of Service Page Styles
========================= */

/* Container for Terms of Service */
.terms {
    padding: 60px 20px;
    background-color: var(--background-color);
    color: var(--text-color);
    font-family: 'Roboto', sans-serif;
}

/* Headings */
.terms h2 {
    font-size: 2.5em;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 10px;
}

.terms h3 {
    font-size: 1.8em;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 10px;
}

/* Paragraphs */
.terms p {
    font-size: 1.1em;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 20px auto;
    text-align: justify;
}

/* Lists */
.terms ul {
    list-style-type: disc;
    padding-left: 40px;
    max-width: 800px;
    margin: 0 auto 20px auto;
}

.terms ul li {
    margin-bottom: 10px;
    font-size: 1.1em;
}

/* Links */
.terms a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.terms a:hover {
    color: var(--hover-color);
    text-decoration: underline;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .terms h2 {
        font-size: 2em;
    }

    .terms h3 {
        font-size: 1.5em;
    }

    .terms p, .terms ul li {
        font-size: 1em;
    }

    .terms ul {
        padding-left: 20px;
    }
}

/* =========================
   23. Sustainable Development Goals Section
========================= */

.sustainable-development-goals {
    padding: 60px 0;
    background-color: #f9f9f9;
    text-align: center;
}

.sustainable-development-goals h1 {
    font-size: 2em;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.sdg-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.sdg-icon {
    width: 200px;
    height: 200px;
    object-fit: contain;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sdg-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .sustainable-development-goals h1 {
        font-size: 1.5em;
    }

    .sdg-icon {
        width: 160px;
        height: 160px;
    }
}

/* =========================
   24. Our Donors & Partners Section
========================= */

.partner-section {
    padding: 60px 20px;
    background-color: #ffffff;
    text-align: center;
    position: relative;
}

.partner-title {
    font-size: 2.5em;
    margin-bottom: 10px;
    color: var(--primary-color);
    font-family: 'Roboto', sans-serif;
}

.partner-separator {
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 0 auto 40px auto;
    border: none;
}

/* Partners Grid */
.partner-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--gap-size);
}

/* Partner Item */
.partner-item {
    flex: 1 1 calc(20% - var(--gap-size));
    max-width: calc(20% - var(--gap-size));
    box-sizing: border-box;
    padding: var(--padding-size);
    transition: transform 0.3s ease;
}

.partner-item:hover {
    transform: scale(1.05);
}

.partner-logo {
    width: 100%;
    height: auto;
    max-height: 100px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease, transform 0.3s ease;
}

.partner-logo:hover {
    filter: grayscale(0%);
}

/* Responsive Adjustments */

@media (min-width: 1201px) {
    .partner-item {
        flex: 1 1 calc(20% - var(--gap-size));
        max-width: calc(20% - var(--gap-size));
    }
}

@media (max-width: 1200px) and (min-width: 992px) {
    .partner-item {
        flex: 1 1 calc(25% - var(--gap-size));
        max-width: calc(25% - var(--gap-size));
    }
}

@media (max-width: 991px) and (min-width: 768px) {
    .partner-item {
        flex: 1 1 calc(33.33% - var(--gap-size));
        max-width: calc(33.33% - var(--gap-size));
    }
    .partner-logo {
        max-height: 80px;
    }
}

@media (max-width: 767px) and (min-width: 576px) {
    .partner-item {
        flex: 1 1 calc(50% - var(--gap-size));
        max-width: calc(50% - var(--gap-size));
    }
    .partner-logo {
        max-height: 70px;
    }
}

@media (max-width: 575px) {
    .partner-item {
        flex: 1 1 calc(100% - var(--gap-size));
        max-width: calc(100% - var(--gap-size));
    }
    .partner-logo {
        max-height: 60px;
    }
}

/* =========================
   CSS for the Donation Section
========================= */

/* Donation Section Container */
.donation-section {
    padding: 60px 20px;
    background: var(--light-background);
    text-align: center;
}

/* Section Heading */
.donation-section h2 {
    font-size: 2.5em;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Section Separator */
.section-separator {
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 0 auto 30px auto;
    border: none;
    border-radius: 2px;
}

/* Section Paragraph */
.donation-section p {
    font-size: 1.2em;
    color: var(--light-text);
    max-width: 600px;
    margin: 0 auto 30px;
}

/* Donation Form */
.donation-form {
    background: var(--light-background);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover Effect for Donation Form */
.donation-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Form Group */
.form-group {
    margin-bottom: 20px;
}

/* Form Labels */
.donation-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: var(--primary-color);
}

/* Required Asterisk */
.donation-form .required {
    color: red;
    margin-left: 2px;
}

/* Form Inputs, Selects, and Textareas */
.donation-form input,
.donation-form select,
.donation-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1em;
    transition: border-color 0.3s ease;
}

/* Focus and Hover Effects */
.donation-form input:focus,
.donation-form select:focus,
.donation-form textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

.donation-form input:hover,
.donation-form select:hover,
.donation-form textarea:hover {
    border-color: var(--hover-color);
}

/* Input Group */
.input-group {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.input-group-text {
    background: #f0f0f0;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-right: none;
    border-radius: 4px 0 0 4px;
    font-weight: bold;
    color: var(--primary-color);
    flex: 0 0 50px;
    text-align: center;
}

.input-group input {
    border-radius: 0 4px 4px 0;
}

/* Submit Button */
.donation-form .btn {
    background: var(--primary-color);
    color: var(--light-background);
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
    font-size: 1em;
    font-weight: bold;
}

/* Button Hover Effect */
.donation-form .btn:hover {
    background: var(--hover-color);
}

/* Confirmation Message */
.confirmation-message {
    margin-top: 20px;
    font-size: 1em;
    color: green;
    display: none;
    animation: fadeIn 1s ease-in-out;
}

.confirmation-message.show {
    display: block;
}

/* FadeIn Animation */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive Adjustments for Donation Section */
@media (max-width: 768px) {
    .donation-section {
        padding: 40px 20px;
    }

    .donation-section h2 {
        font-size: 2em;
    }

    .donation-section p {
        font-size: 1em;
    }

    .donation-form {
        padding: 20px;
    }
}

/* =========================
   CSS for the Activities Section
========================= */

/* Activities Section */
.activities {
    padding: 60px 0;
    background: var(--light-background);
}

/* Section Heading */
.activities h2 {
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-family: 'Roboto', sans-serif;
}

/* Activity Grid */
.activity-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
}

/* Activity Item */
.activity-item {
    flex: 1 1 30%;
    margin: 10px;
    background: var(--light-background);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Hover Effect for Activity Item */
.activity-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    background: #e5ffe5;
}

/* Activity Image */
.activity-image,
.box-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

/* Activity Heading */
.activity-heading,
.box-heading {
    margin-bottom: 10px;
    color: var(--primary-color);
    font-size: 1.3em;
}

/* Activity Description */
.activity-description,
.box-paragraph {
    color: var(--light-text);
    font-size: 1em;
    margin-bottom: 20px;
    text-align: left;
}

/* Read More Button */
.activity-item .btn,
.box-button {
    display: inline-block;
    padding: 12px 25px;
    background-color: var(--primary-color);
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

/* Button Hover Effect */
.activity-item .btn:hover,
.box-button:hover {
    background-color: var(--hover-color);
    transform: scale(1.05);
}

/* Responsive Adjustments for Activities Section */
@media (max-width: 768px) {
    .activity-grid {
        flex-direction: column;
        align-items: center;
    }

    .activity-item {
        flex: 1 1 80%;
    }
}

/* =========================
   Variables and Common Styles
========================= */

/* CSS Variables */
:root {
    --primary-color: #006400; /* Dark Green */
    --secondary-color: #ffd700; /* Gold */
    --hover-color: #004d00; /* Darker Green */
    --light-background: #fff;
    --light-text: #555;
    --text-color: #333;
    --background-color: #f4f4f4;
    --border-color: #ccc;
}

/* Common Button Styles */
.btn {
    cursor: pointer;
}

/* Box Style (if used elsewhere) */
.box-style {
    /* Include any common styles for boxes if needed */
}

/* =========================
   Review Section Styles
========================= */
.rev-reviews {
    padding: 60px 0;
    background-color: #f0f4f8;
    text-align: center;
}

.rev-reviews h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #006400; /* Dark Green */
}

.rev-section-separator {
    width: 80px;
    height: 3px;
    background-color: #ffd700; /* Gold */
    margin: 0 auto 40px;
    border: none;
}

.rev-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.rev-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    padding: 20px;
}

.rev-slide.rev-active {
    display: block;
    opacity: 1;
}

.rev-slide p {
    font-size: 1.2em;
    color: #333;
    margin-bottom: 15px;
}

.rev-slide h4 {
    font-size: 1em;
    color: #555;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .rev-reviews h2 {
        font-size: 2em;
    }

    .rev-slide p {
        font-size: 1em;
    }

    .rev-slide h4 {
        font-size: 0.9em;
    }
}

/* =========================
   Terms of Service Section Styles
========================= */

/* Terms of Service Section */
.tos-terms {
    padding: 60px 20px;
    background-color: #ffffff;
    color: #333333;
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.tos-container {
    max-width: 800px;
    margin: 0 auto;
}

.tos-title {
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #006400; /* Dark Green */
    text-align: center;
}

.tos-section-separator {
    width: 80px;
    height: 3px;
    background-color: #ffd700; /* Gold */
    margin: 0 auto 40px;
    border: none;
}

.tos-content {
    text-align: left;
}

.tos-content h3 {
    font-size: 1.8em;
    margin-top: 30px;
    margin-bottom: 10px;
    color: #006400; /* Dark Green */
}

.tos-content p {
    font-size: 1em;
    margin-bottom: 15px;
    color: #333333;
}

.tos-content a {
    color: #006400; /* Dark Green */
    text-decoration: none;
}

.tos-content a:hover {
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .tos-title {
        font-size: 2em;
    }

    .tos-content h3 {
        font-size: 1.5em;
    }

    .tos-content p {
        font-size: 0.95em;
    }
}

/* Donate Button Styles */
.donate-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: #ffd700; /* Gold */
    color: #006400; /* Dark Green */
    text-decoration: none;
    font-size: 1.1em;
    border-radius: 5px;
    transition: transform 0.3s ease, background-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.donate-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.3s ease;
}

.donate-button:hover {
    transform: scale(1.05);
    background-color: #e6c200; /* Darker Gold */
}

.donate-button:hover::after {
    left: 100%;
}

/* =========================
   Education Support Page Styles
========================= */

/* Education Support Hero Section */
.edu-hero {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.edu-hero-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.edu-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.donate-button.animate-button {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    padding: 14px 28px; /* Increased padding */
    background-color: #ffd700; /* Gold */
    color: #006400; /* Dark Green */
    text-decoration: none;
    font-size: 1.2em; /* Increased font size */
    border-radius: 8px; /* Rounded corners */
    transition: transform 0.3s ease, background-color 0.3s ease;
    z-index: 1;
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.donate-button.animate-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.3s ease;
}

.donate-button.animate-button:hover {
    transform: translateX(-50%) scale(1.05);
    background-color: #e6c200; /* Darker Gold */
}

.donate-button.animate-button:hover::after {
    left: 100%;
}

/* Education Support Programs Section */
.edu-programs {
    padding: 80px 20px; /* Increased padding */
    background-color: #f9f9f9;
}

.edu-title {
    font-size: 3em; /* Increased font size */
    margin-bottom: 15px;
    color: #006400; /* Dark Green */
    text-align: center;
}

.edu-section-separator {
    width: 100px; /* Increased width */
    height: 4px; /* Increased height */
    background-color: #ffd700; /* Gold */
    margin: 0 auto 50px;
    border: none;
}

.edu-content {
    max-width: 900px; /* Increased max-width */
    margin: 0 auto;
    font-size: 1.1em; /* Increased font size */
    color: #333333;
    line-height: 1.8; /* Increased line height */
    text-align: center;
}

/* Education Sections with Alternating Layout */
.edu-section {
    padding: 60px 20px;
    background-color: #ffffff;
}

.edu-section-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

.edu-section .edu-text, .edu-section .edu-image {
    flex: 1;
}

.edu-section .edu-text {
    order: 1;
}

.edu-section .edu-image {
    order: 2;
}

.edu-section .edu-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

/* Reverse Layout for Even Sections */
.edu-section.reverse .edu-text {
    order: 2;
}

.edu-section.reverse .edu-image {
    order: 1;
}

/* Section Subtitles */
.edu-subtitle {
    font-size: 2em; /* Increased font size */
    margin-bottom: 15px;
    color: #006400; /* Dark Green */
    text-align: center;
}

.edu-section .edu-text p {
    font-size: 1.1em; /* Increased font size */
    color: #333333;
    line-height: 1.8; /* Increased line height */
    text-align: left;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .edu-section-content {
        flex-direction: column;
        text-align: center;
    }

    .edu-section .edu-text, .edu-section .edu-image {
        order: initial;
    }

    .edu-section.reverse .edu-text, .edu-section.reverse .edu-image {
        order: initial;
    }

    .edu-section .edu-text p {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .edu-hero {
        height: 250px;
    }

    .donate-button.animate-button {
        padding: 10px 20px;
        font-size: 1em;
    }

    .edu-title {
        font-size: 2.5em; /* Slightly reduced for smaller screens */
    }

    .edu-subtitle {
        font-size: 1.8em; /* Slightly reduced for smaller screens */
    }

    .edu-content, 
    .edu-section .edu-content, 
    .child-education .edu-content, 
    .teacher-support .edu-content, 
    .community-sensitization .edu-content {
        font-size: 1em; /* Adjusted font size */
    }

    .edu-section-content {
        gap: 20px;
    }
}

/* Additional Enhancements */

/* Smooth Scrolling for Donate Button */
.donate-button {
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.donate-button:hover {
    cursor: pointer;
}

/* General Button Styles */
.btn {
    padding: 12px 24px; /* Increased padding */
    background-color: #ffd700; /* Gold */
    color: #006400; /* Dark Green */
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1em; /* Increased font size */
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn:hover {
    background-color: #e6c200; /* Darker Gold */
    transform: scale(1.05);
}

/* =========================
   Youth & Women Empowerment Page Styles
========================= */

/* Empowerment Hero Section */
.empower-hero {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.empower-hero-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.empower-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Reusing .donate-button and .animate-button from Education Support */

/* Empower Introduction Section */
.empower-intro {
    padding: 80px 20px; /* Consistent padding */
    background-color: #f9f9f9;
}

.empower-title {
    font-size: 3em; /* Increased font size */
    margin-bottom: 15px;
    color: #006400; /* Dark Green */
    text-align: center;
}

.empower-section-separator {
    width: 100px; /* Increased width */
    height: 4px; /* Increased height */
    background-color: #ffd700; /* Gold */
    margin: 0 auto 50px;
    border: none;
}

.empower-content {
    max-width: 900px; /* Increased max-width */
    margin: 0 auto;
    font-size: 1.1em; /* Increased font size */
    color: #333333;
    line-height: 1.8; /* Increased line height */
    text-align: center;
}

/* Empower Sections with Alternating Layout */
.empower-section {
    padding: 60px 20px;
    background-color: #ffffff;
}

.empower-section-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

.empower-section .empower-text, .empower-section .empower-image {
    flex: 1;
}

.empower-section .empower-text {
    order: 1;
}

.empower-section .empower-image {
    order: 2;
}

.empower-section .empower-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

/* Reverse Layout for Even Sections */
.empower-section.reverse .empower-text {
    order: 2;
}

.empower-section.reverse .empower-image {
    order: 1;
}

/* Section Subtitles */
.empower-subtitle {
    font-size: 2em; /* Increased font size */
    margin-bottom: 15px;
    color: #006400; /* Dark Green */
    text-align: center;
}

.empower-section .empower-text p {
    font-size: 1.1em; /* Increased font size */
    color: #333333;
    line-height: 1.8; /* Increased line height */
    text-align: left;
}

/* Responsive Styles for Youth & Women Empowerment Page */
@media (max-width: 992px) {
    .empower-section-content {
        flex-direction: column;
        text-align: center;
    }

    .empower-section .empower-text, .empower-section .empower-image {
        order: initial;
    }

    .empower-section.reverse .empower-text, .empower-section.reverse .empower-image {
        order: initial;
    }

    .empower-section .empower-text p {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .empower-hero {
        height: 250px;
    }

    .donate-button.animate-button {
        padding: 10px 20px;
        font-size: 1em;
    }

    .empower-title {
        font-size: 2.5em; /* Slightly reduced for smaller screens */
    }

    .empower-subtitle {
        font-size: 1.8em; /* Slightly reduced for smaller screens */
    }

    .empower-content, 
    .empower-section .empower-content, 
    .tackling-unemployment .empower-content, 
    .tackling-gender-bias .empower-content {
        font-size: 1em; /* Adjusted font size */
    }

    .empower-section-content {
        gap: 20px;
    }
}

/* =========================
   Climate Action Page Styles
========================= */

/* Empowering Communities Section */
.empower-communities {
    padding: 80px 20px; /* Consistent padding */
    background-color: #f9f9f9;
}

.climate-title {
    font-size: 3em; /* Increased font size */
    margin-bottom: 15px;
    color: #006400; /* Dark Green */
    text-align: center;
}

.climate-section-separator {
    width: 100px; /* Increased width */
    height: 4px; /* Increased height */
    background-color: #ffd700; /* Gold */
    margin: 0 auto 50px;
    border: none;
}

.climate-content {
    max-width: 900px; /* Increased max-width */
    margin: 0 auto;
    font-size: 1.1em; /* Increased font size */
    color: #333333;
    line-height: 1.8; /* Increased line height */
    text-align: center;
}

/* Climate Action Section with Alternating Layout */
.climate-action {
    padding: 60px 20px;
    background-color: #ffffff;
}

.climate-action .empower-section-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

.climate-action .empower-text, .climate-action .empower-image {
    flex: 1;
}

.climate-action .empower-text {
    order: 1;
}

.climate-action .empower-image {
    order: 2;
}

.climate-action .empower-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

/* Reverse Layout for Even Sections */
.climate-action.reverse .empower-text {
    order: 2;
}

.climate-action.reverse .empower-image {
    order: 1;
}

/* Additional Climate Action Initiatives Section */
.additional-initiatives {
    padding: 60px 20px;
    background-color: #ffffff;
}

.additional-initiatives .empower-section-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

.additional-initiatives .empower-text, .additional-initiatives .empower-image {
    flex: 1;
}

.additional-initiatives .empower-text {
    order: 1;
}

.additional-initiatives .empower-image {
    order: 2;
}

.additional-initiatives .empower-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

/* Reverse Layout for Even Sections */
.additional-initiatives.reverse .empower-text {
    order: 2;
}

.additional-initiatives.reverse .empower-image {
    order: 1;
}

/* Section Subtitles */
.empower-subtitle {
    font-size: 2em; /* Increased font size */
    margin-bottom: 15px;
    color: #006400; /* Dark Green */
    text-align: center;
}

.empower-section .empower-text p {
    font-size: 1.1em; /* Increased font size */
    color: #333333;
    line-height: 1.8; /* Increased line height */
    text-align: left;
}

/* Responsive Styles for Climate Action Page */
@media (max-width: 992px) {
    .climate-action .empower-section-content,
    .additional-initiatives .empower-section-content {
        flex-direction: column;
        text-align: center;
    }

    .climate-action .empower-text, 
    .climate-action .empower-image,
    .additional-initiatives .empower-text, 
    .additional-initiatives .empower-image {
        order: initial;
    }

    .climate-action.reverse .empower-text, 
    .climate-action.reverse .empower-image,
    .additional-initiatives.reverse .empower-text, 
    .additional-initiatives.reverse .empower-image {
        order: initial;
    }

    .climate-action .empower-text p,
    .additional-initiatives .empower-text p {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .climate-hero {
        height: 250px;
    }

    .donate-button.animate-button {
        padding: 10px 20px;
        font-size: 1em;
    }

    .climate-title {
        font-size: 2.5em; /* Slightly reduced for smaller screens */
    }

    .empower-subtitle {
        font-size: 1.8em; /* Slightly reduced for smaller screens */
    }

    .climate-content, 
    .climate-action .empower-content, 
    .additional-initiatives .empower-content {
        font-size: 1em; /* Adjusted font size */
    }

    .climate-action .empower-section-content,
    .additional-initiatives .empower-section-content {
        gap: 20px;
    }
}

/* Additional Enhancements */

/* Smooth Scrolling for Donate Button */
.donate-button {
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.donate-button:hover {
    cursor: pointer;
}

/* General Button Styles */
.btn {
    padding: 14px 28px; /* Increased padding */
    background-color: #ffd700; /* Gold */
    color: #006400; /* Dark Green */
    border: none;
    border-radius: 8px; /* Rounded corners */
    cursor: pointer;
    font-size: 1.2em; /* Increased font size */
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.btn:hover {
    background-color: #e6c200; /* Darker Gold */
    transform: scale(1.05);
}

/* =========================
   Improving Healthcare Page Styles
========================= */

/* Healthcare Hero Section */
.healthcare-hero {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.healthcare-hero-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.healthcare-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Reusing .donate-button and .animate-button from other pages */

/* Healthcare Support Programs Section */
.healthcare-programs {
    padding: 80px 20px; /* Consistent padding */
    background-color: #f9f9f9;
}

.healthcare-title {
    font-size: 3em; /* Increased font size */
    margin-bottom: 15px;
    color: #006400; /* Dark Green */
    text-align: center;
}

.healthcare-section-separator {
    width: 100px; /* Increased width */
    height: 4px; /* Increased height */
    background-color: #ffd700; /* Gold */
    margin: 0 auto 50px;
    border: none;
}

.healthcare-content {
    max-width: 900px; /* Increased max-width */
    margin: 0 auto;
    font-size: 1.1em; /* Increased font size */
    color: #333333;
    line-height: 1.8; /* Increased line height */
    text-align: center;
}

/* Healthcare Sections with Alternating Layout */
.healthcare-section {
    padding: 60px 20px;
    background-color: #ffffff;
}

.healthcare-section-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

.healthcare-section .healthcare-text, 
.healthcare-section .healthcare-image {
    flex: 1;
}

.healthcare-section .healthcare-text {
    order: 1;
}

.healthcare-section .healthcare-image {
    order: 2;
}

.healthcare-section .healthcare-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

/* Reverse Layout for Even Sections */
.healthcare-section.reverse .healthcare-text {
    order: 2;
}

.healthcare-section.reverse .healthcare-image {
    order: 1;
}

/* Section Subtitles */
.healthcare-subtitle {
    font-size: 2em; /* Increased font size */
    margin-bottom: 15px;
    color: #006400; /* Dark Green */
    text-align: center;
}

.healthcare-section .healthcare-text p {
    font-size: 1.1em; /* Increased font size */
    color: #333333;
    line-height: 1.8; /* Increased line height */
    text-align: left;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .healthcare-section-content {
        flex-direction: column;
        text-align: center;
    }

    .healthcare-section .healthcare-text, 
    .healthcare-section .healthcare-image {
        order: initial;
    }

    .healthcare-section.reverse .healthcare-text, 
    .healthcare-section.reverse .healthcare-image {
        order: initial;
    }

    .healthcare-section .healthcare-text p {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .healthcare-hero {
        height: 250px;
    }

    .donate-button.animate-button {
        padding: 10px 20px;
        font-size: 1em;
    }

    .healthcare-title {
        font-size: 2.5em; /* Slightly reduced for smaller screens */
    }

    .healthcare-subtitle {
        font-size: 1.8em; /* Slightly reduced for smaller screens */
    }

    .healthcare-content, 
    .healthcare-section .healthcare-content, 
    .medical-supplies .healthcare-content, 
    .supporting-professionals .healthcare-content, 
    .community-health .healthcare-content {
        font-size: 1em; /* Adjusted font size */
    }

    .healthcare-section-content {
        gap: 20px;
    }
}

/* Additional Enhancements */

/* Smooth Scrolling for Donate Button */
.donate-button {
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.donate-button:hover {
    cursor: pointer;
}

/* General Button Styles */
.btn {
    padding: 14px 28px; /* Increased padding */
    background-color: #ffd700; /* Gold */
    color: #006400; /* Dark Green */
    border: none;
    border-radius: 8px; /* Rounded corners */
    cursor: pointer;
    font-size: 1.2em; /* Increased font size */
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.btn:hover {
    background-color: #e6c200; /* Darker Gold */
    transform: scale(1.05);
}

/* =========================
   Projects Introduction Section Styles
========================= */

/* Projects Introduction Section */
.projects-intro {
    padding: 80px 20px;
    background-color: #f9f9f9;
    text-align: center; /* Center-align all text within this section */
}

.projects-title {
    font-size: 3em;
    margin-bottom: 15px;
    color: #006400; /* Dark Green */
    text-align: center; /* Ensure the title is centered */
}

.projects-section-separator {
    width: 100px;
    height: 4px;
    background-color: #ffd700; /* Gold */
    margin: 0 auto 50px; /* Center the separator and add bottom margin */
    border: none;
}

.projects-content {
    max-width: 800px; /* Adjusted max-width for better readability */
    margin: 0 auto; /* Center the content container */
    font-size: 1.1em;
    color: #333333;
    line-height: 1.8;
    text-align: center; /* Center-align the paragraph text */
}

/* Separate Container for Introduction */
.projects-intro-container {
    /* No grid layout here */
    display: block;
}

/* =========================
   Projects Grid Section Styles
========================= */

/* Projects Grid Section */
.projects-grid {
    padding: 60px 20px;
    background-color: #ffffff;
}

.projects-grid-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.project-card {
    background-color: #fdfdfd;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.project-card:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}

.project-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 15px;
}

.project-subtitle {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: #006400; /* Dark Green */
}

.project-card p {
    font-size: 1em;
    color: #333333;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ffd700; /* Gold */
    color: #006400; /* Dark Green */
    text-decoration: none;
    font-size: 1em;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.read-more-button:hover {
    background-color: #e6c200; /* Darker Gold */
    transform: scale(1.05);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .projects-intro {
        padding: 60px 20px;
    }

    .projects-title {
        font-size: 2.5em;
    }

    .projects-content {
        font-size: 1em;
    }

    .projects-grid-container {
        gap: 20px;
    }

    .project-icon img {
        width: 50px;
        height: 50px;
    }

    .project-subtitle {
        font-size: 1.5em;
    }

    .read-more-button {
        padding: 8px 16px;
        font-size: 0.9em;
    }
}

/* =========================
   Sitemap Section Styles
========================= */

/* Sitemap Section */
.sitemap {
    padding: 80px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.sitemap h2 {
    font-size: 3em;
    margin-bottom: 15px;
    color: #006400; /* Dark Green */
}

.sitemap .section-separator {
    width: 100px;
    height: 4px;
    background-color: #ffd700; /* Gold */
    margin: 0 auto 50px;
    border: none;
}

.sitemap-list {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
    padding: 0;
    text-align: left; /* Left-align nested lists for better readability */
}

.sitemap-list > li {
    margin-bottom: 15px;
    position: relative;
}

.sitemap-list > li > a {
    font-size: 1.2em;
    color: #006400; /* Dark Green */
    text-decoration: none;
    transition: color 0.3s ease;
}

.sitemap-list > li > a:hover {
    color: #ffd700; /* Gold */
}

.sitemap-list ul {
    list-style: disc inside;
    margin-top: 10px;
}

.sitemap-list ul li a {
    font-size: 1em;
    color: #333333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.sitemap-list ul li a:hover {
    color: #006400; /* Dark Green */
}

/* Ensure nested lists are indented properly */
.sitemap-list ul {
    padding-left: 20px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .sitemap {
        padding: 60px 20px;
    }

    .sitemap h2 {
        font-size: 2.5em;
    }

    .sitemap-list {
        max-width: 100%;
    }

    .sitemap-list > li > a {
        font-size: 1.1em;
    }

    .sitemap-list ul li a {
        font-size: 0.95em;
    }
}

/* =========================
   Recent and Upcoming Activities Section Styles
========================= */

/* Common Styles for Activities Sections */
.recent-activities,
.upcoming-activities {
    padding: 60px 20px;
    background-color: #f9f9f9;
}

.recent-activities h2,
.upcoming-activities h2 {
    font-size: 2.5em;
    margin-bottom: 15px;
    color: #006400; /* Dark Green */
    text-align: center;
}

.section-separator {
    width: 100px;
    height: 4px;
    background-color: #ffd700; /* Gold */
    margin: 0 auto 50px;
    border: none;
}

/* Activities List */
.activities-list {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
    padding: 0;
}

.activity-post {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 20px;
}

.activity-date {
    flex: 0 0 150px;
    font-size: 1em;
    color: #006400; /* Dark Green */
    margin-right: 20px;
    display: flex;
    align-items: center;
}

.activity-date i {
    margin-right: 8px;
    color: #ffd700; /* Gold */
}

.activity-content {
    flex: 1;
}

.activity-content h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #006400; /* Dark Green */
}

.activity-content h3 a {
    text-decoration: none;
    color: #006400; /* Dark Green */
    transition: color 0.3s ease;
}

.activity-content h3 a:hover {
    color: #ffd700; /* Gold */
}

.activity-content p {
    font-size: 1em;
    color: #333333;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* Read More Button */
.read-more-button {
    display: inline-block;
    padding: 8px 16px;
    background-color: #ffd700; /* Gold */
    color: #006400; /* Dark Green */
    text-decoration: none;
    font-size: 0.9em;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.read-more-button:hover {
    background-color: #e6c200; /* Darker Gold */
    transform: scale(1.05);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .recent-activities,
    .upcoming-activities {
        padding: 40px 20px;
    }

    .recent-activities h2,
    .upcoming-activities h2 {
        font-size: 2em;
    }

    .activity-post {
        flex-direction: column;
        align-items: flex-start;
    }

    .activity-date {
        flex: none;
        width: 100%;
        margin-bottom: 10px;
    }

    .activity-content h3 {
        font-size: 1.3em;
    }

    .read-more-button {
        padding: 6px 12px;
        font-size: 0.8em;
    }
}

