    /* General Styling */
:root {
    --primary-blue: #007bff;
    --secondary-blue: #e6f2ff;
    --text-dark: #333;
    --text-light: #666;
    --white: #fff;
    --light-gray: #f8f8f8;
    --border-gray: #ddd;
    --card-bg: #fff;
    --shadow-light: rgba(0, 0, 0, 0.05);
    --gradient-bg-start: #e0f0ff;
    --gradient-bg-end: #ffffff;
    --footer-bg: #2c3e50;
    --footer-text: #ecf0f1;
    --footer-link-hover: #00aaff;
    --section-bg-light: #fdfdfd; /* New: for the donation list section */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: linear-gradient(to bottom right, var(--gradient-bg-start), var(--gradient-bg-end));
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    padding: 12px 25px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-blue);
    color: var(--white);
    box-shadow: 0 4px 8px var(--shadow-light);
}

.btn-primary:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary-blue);
    border: 1px solid var(--primary-blue);
}

.btn-secondary:hover {
    background-color: var(--secondary-blue);
    transform: translateY(-2px);
}

/* Header */
.header {
    background-color: var(--white);
    padding: 15px 0;
    box-shadow: 0 2px 4px var(--shadow-light);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-blue);
}

/* Desktop Navigation */
.nav ul {
    list-style: none;
    display: flex;
}

.nav ul li {
    margin-left: 30px;
}

.nav ul li a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
    transition: color 0.3s ease;
}

.nav ul li a:hover,
.nav ul li a.active {
    color: var(--primary-blue);
}

.nav ul li a.active::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 6px;
    height: 6px;
    background-color: var(--primary-blue);
    border-radius: 50%;
    transform: translateX(-50%);
}

.header-actions {
    display: flex;
    gap: 10px;
}

/* Language Toggle Button */
.language-toggle {
    /* Inherits from .btn .btn-secondary */
    padding: 10px 15px; /* Slightly smaller padding */
    font-size: 0.9rem;
    font-weight: 700;
    min-width: 55px; /* Ensure consistent width */
    text-align: center;
}


/* Mobile Menu Toggle Button */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--primary-blue);
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-only {
    display: none;
}
.desktop-only {
    display: flex;
}


/* Hero Section */
.hero-section {
    flex-grow: 1;
    display: flex;
    align-items: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before,
.hero-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    z-index: -1;
}

.hero-section::before {
    width: 300px;
    height: 300px;
    background-color: #add8e6;
    top: 10%;
    left: -5%;
}

.hero-section::after {
    width: 250px;
    height: 250px;
    background-color: #ffe0b3;
    bottom: 5%;
    right: -3%;
}


.hero-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.text-content {
    flex: 1;
    max-width: 600px;
}

.text-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.text-content .highlight {
    color: var(--primary-blue);
}

.text-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.donate-now-button-bottom {
    display: none;
}


/* Donation Card */
.donation-card {
    background-color: var(--card-bg);
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow-light);
    padding: 30px;
    width: 400px;
    flex-shrink: 0;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 25px;
    text-align: center;
}

.donation-type-toggle {
    display: flex;
    background-color: var(--light-gray);
    border-radius: 10px;
    padding: 5px;
    margin-bottom: 25px;
}

.toggle-btn {
    flex: 1;
    padding: 10px 15px;
    border: none;
    border-radius: 8px;
    background-color: transparent;
    cursor: pointer;
    font-weight: 500;
    color: var(--text-light);
    transition: background-color 0.3s ease, color 0.3s ease;
    font-size: 0.95rem;
}

.toggle-btn.active {
    background-color: var(--primary-blue);
    color: var(--white);
    box-shadow: 0 2px 5px var(--shadow-light);
}

.amount-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.amount-btn {
    background-color: var(--light-gray);
    border: 1px solid var(--border-gray);
    border-radius: 10px;
    padding: 15px 10px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.1s ease;
}

.amount-btn:hover {
    background-color: #e9e9e9;
}

.amount-btn.selected {
    background-color: var(--secondary-blue);
    border-color: var(--primary-blue);
    color: var(--primary-blue);
    font-weight: 600;
}

.custom-amount input {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid var(--border-gray);
    border-radius: 10px;
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 25px;
    transition: border-color 0.2s ease;
}

.custom-amount input::placeholder {
    color: var(--text-light);
}

.custom-amount input:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.donate-now-card-button {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
}

/* --- NEW: Recent Donations List Section Styles --- */
.recent-donations-section {
    background-color: var(--section-bg-light);
    padding: 80px 0;
    text-align: center;
}

.recent-donations-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue); /* Using primary blue for section titles */
    margin-bottom: 50px;
}

.donors-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); /* Responsive grid */
    gap: 25px; /* Slightly more gap */
    max-width: 1000px; /* Max width for content */
    margin: 0 auto; /* Center the grid */
    padding: 0 10px; /* Padding for smaller screens */
}

.donor-card-display {
    background-color: var(--white);
    border-radius: 15px; /* Slightly more rounded */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1); /* Stronger shadow */
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-gray); /* Subtle border */
}

.donor-card-display:hover {
    transform: translateY(-8px); /* More pronounced lift */
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.donor-card-display .donor-name-display {
    margin-top: 0;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-size: 1.3em;
    font-weight: 600;
}

.donor-card-display .donation-amount-display {
    font-size: 1.1em;
    color: var(--primary-blue); /* Use primary blue for amount */
    font-weight: 700;
}
.donor-card-display .donation-amount-display small {
    font-size: 0.8em;
    color: var(--text-light);
    display: block;
    margin-top: 5px;
}

/* --- FOOTER STYLES (from previous step, included for completeness) --- */
.footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    padding: 60px 0 0;
    margin-top: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    padding-bottom: 40px;
}

.footer-col h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 10px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--footer-text);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--footer-link-hover);
}

.footer-col .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.1rem;
    margin-right: 10px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.footer-col .social-links a:hover {
    background-color: var(--footer-link-hover);
    color: var(--footer-bg);
}

.footer-col.contact-col p i {
    margin-right: 10px;
    color: var(--footer-link-hover);
}

.newsletter-form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.newsletter-form input {
    flex-grow: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 0.95rem;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form input:focus {
    outline: none;
    box-shadow: 0 0 0 2px var(--footer-link-hover);
}

.newsletter-form .btn-primary {
    background-color: var(--primary-blue);
    padding: 12px 20px;
    border-radius: 8px;
    box-shadow: none;
    font-size: 0.95rem;
}

.newsletter-form .btn-primary:hover {
    background-color: #0056b3;
    transform: translateY(0);
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .text-content h1 {
        font-size: 3rem;
    }

    .text-content p {
        font-size: 1rem;
    }

    .donation-card {
        width: 100%;
        max-width: 400px;
        margin-top: 50px;
    }

    .donate-now-button-bottom {
        display: block;
        margin: 30px auto 0;
    }

    .hero-section::before,
    .hero-section::after {
        filter: blur(50px);
    }

    .menu-toggle {
        display: block;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100%;
        background-color: var(--white);
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        transition: right 0.3s ease-in-out;
        padding-top: 80px;
        z-index: 999;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .nav.active {
        right: 0;
    }

    .nav ul {
        flex-direction: column;
        width: 100%;
        padding: 20px;
    }

    .nav ul li {
        margin: 0;
        width: 100%;
        text-align: left;
        margin-bottom: 15px;
    }

    .nav ul li:last-child {
        margin-bottom: 0;
    }

    .nav ul li a {
        padding: 10px 0;
        display: block;
        font-size: 1.1rem;
    }

    .nav ul li a.active::after {
        left: 0;
        transform: translateX(0);
        margin-left: 5px;
    }

    .desktop-only {
        display: none;
    }

    .mobile-only {
        display: flex;
        flex-direction: column;
        gap: 15px;
        width: 100%;
        padding: 20px;
        border-top: 1px solid var(--border-gray);
    }

    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 990;
        transition: opacity 0.3s ease;
        opacity: 1;
    }

    /* Footer adjustments for tablet/smaller desktop */
    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        text-align: center;
    }

    .footer-col {
        margin-bottom: 30px;
    }

    .footer-col.about-col,
    .footer-col.contact-col,
    .footer-col.links-col,
    .footer-col.subscribe-col {
        text-align: center;
    }

    .footer-col ul {
        padding-left: 0;
        text-align: center;
    }

    .footer-col .social-links,
    .footer-col.contact-col p {
        justify-content: center;
        display: flex;
        flex-wrap: wrap;
    }

    /* Recent Donations section adjustments for smaller screens */
    .recent-donations-section .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .header .container {
        flex-wrap: nowrap;
        justify-content: space-between;
    }

    .logo {
        margin-bottom: 0;
    }

    .hero-section {
        padding-top: 40px;
    }

    .text-content h1 {
        font-size: 2.5rem;
    }

    .amount-options {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Further footer adjustments for smaller tablets */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Recent Donations section adjustments for smaller screens */
    .donors-container {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 480px) {
    .text-content h1 {
        font-size: 2rem;
    }

    .text-content p {
        font-size: 0.9rem;
    }

    .amount-options {
        grid-template-columns: 1fr;
    }

    .card-title {
        font-size: 1.3rem;
    }

    /* Footer adjustments for mobile phones */
    .newsletter-form {
        flex-direction: column;
    }
    .newsletter-form input,
    .newsletter-form .btn-primary {
        width: 100%;
    }
    .footer-col.contact-col p {
        flex-direction: column;
        align-items: center;
    }
    .footer-col.contact-col p i {
        margin-right: 0;
        margin-bottom: 5px;
    }

    /* Recent Donations section adjustments for mobile phones */
    .recent-donations-section .section-title {
        font-size: 1.8rem;
    }
    .donors-container {
        grid-template-columns: 1fr; /* Single column for very small screens */
    }
}








/* Add this to your existing CSS, or modify the relevant sections */

/* Variables (already present, just confirming for context) */
:root {
    --primary-blue: #007bff;
    --secondary-blue: #e6f2ff;
    --text-dark: #333;
    --text-light: #666;
    --white: #fff;
    --light-gray: #f8f8f8;
    --border-gray: #ddd;
    --card-bg: #fff;
    --shadow-light: rgba(0, 0, 0, 0.05);
    --gradient-bg-start: #e0f0ff;
    --gradient-bg-end: #ffffff;
    --footer-bg: #2c3e50; /* Dark blue/gray */
    --footer-text: #ecf0f1; /* Light grey for text */
    --footer-link-hover: #00aaff; /* Bright blue on hover */
    --section-bg-light: #fdfdfd;
}

/* ... (rest of your existing CSS code) ... */

/* Footer Styles */
.footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    padding: 60px 0 0;
    margin-top: auto;
}

.footer-content {
    /* UPDATED: Added one more column for payment methods */
    /* This will create 4 columns if there's enough space,
       otherwise it will auto-fit based on minmax */
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    padding-bottom: 40px;
}

.footer-col h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 10px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--footer-text);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--footer-link-hover);
}

.footer-col .social-links {
    display: flex; /* Make social links flexbox for alignment */
    gap: 10px; /* Space between icons */
    margin-top: 20px;
}

.footer-col .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.1rem;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.footer-col .social-links a:hover {
    background-color: var(--footer-link-hover);
    color: var(--footer-bg);
}

.footer-col.contact-col p i {
    margin-right: 10px;
    color: var(--footer-link-hover);
}

/* NEW: Payment Methods Styling */
.payment-methods {
    display: flex;
    flex-wrap: wrap; /* Allow logos to wrap to the next line */
    gap: 10px; /* Space between logos */
    margin-top: 15px;
    justify-content: flex-start; /* Align logos to the start by default */
}

.payment-logo {
    height: 30px; /* Set a consistent height for all logos */
    width: auto; /* Maintain aspect ratio */
    filter: grayscale(80%) brightness(150%); /* Make logos subtle, light, and grayscale */
    opacity: 0.8;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.payment-logo:hover {
    filter: grayscale(0%) brightness(100%); /* Full color on hover */
    opacity: 1;
}

/* Specific adjustments for some logos if needed (e.g., if one is too wide) */
.payment-logo.paypal {
    height: 25px; /* Adjust height for PayPal if it looks too tall */
    margin-top: 2.5px; /* Adjust vertically to align with others */
}
.payment-logo.aba-bank,
.payment-logo.acleda-bank,
.payment-logo.canadia-bank,
.payment-logo.ftb-bank,
.payment-logo.wing,
.payment-logo.truemoney {
    /* Specific styles for Cambodian bank logos if they need different sizing/treatment */
    height: 35px; /* Slightly taller for some bank logos if needed */
}


/* Footer Bottom (already present, just confirming for context) */
.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design Adjustments (IMPORTANT: Update existing media queries) */

@media (max-width: 992px) {
    .footer-content {
        /* Adjusted for 3 columns on tablet, or fewer if screen is very narrow */
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        text-align: center; /* Center align columns */
    }

    .footer-col .social-links,
    .payment-methods {
        justify-content: center; /* Center social and payment logos */
    }

    /* Adjust order if needed for mobile/tablet */
    .footer-col.about-col { order: 1; }
    .footer-col.payment-col { order: 2; } /* Move payment up */
    .footer-col.links-col { order: 3; }
    .footer-col.contact-col { order: 4; }
}

@media (max-width: 768px) {
    .footer-content {
        /* Stack columns on smaller tablets/large mobiles */
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-col .social-links,
    .payment-methods {
        justify-content: center; /* Ensure they are centered when stacked */
    }

    /* Reset order as stacking makes it less critical */
    .footer-col.about-col,
    .footer-col.payment-col,
    .footer-col.links-col,
    .footer-col.contact-col {
        order: unset;
    }
}

@media (max-width: 480px) {
    /* No major changes needed here if 768px handles stacking well */
}

