    .donation-section {
        padding: 60px 20px;
        background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        position: relative;
        overflow: hidden;
    }
    .donation-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: url('../../images/backgrounds/food-donation.jpg');
        background-size: cover;
        background-position: center;
        opacity: 0.05;
        z-index: 0;
    }
    .donation-container {
        max-width: 1200px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }
    .section-title {
        text-align: center;
        margin-bottom: 50px;
    }
    .section-title h2 {
        color: #1a365d;
        font-size: 2.8rem;
        margin-bottom: 15px;
        font-weight: 700;
    }
    .section-title p {
        color: #4a5568;
        font-size: 1.2rem;
        max-width: 600px;
        margin: 0 auto;
        line-height: 1.6;
    }

    /* Impact Metrics */
    .impact-metrics {
        display: flex;
        justify-content: center;
        gap: 40px;
        margin-bottom: 60px;
        flex-wrap: wrap;
    }
    .metric-item {
        text-align: center;
        padding: 20px;
        background: rgba(255, 255, 255, 0.9);
        border-radius: 15px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        min-width: 150px;
    }
    .metric-number {
        font-size: 2.5rem;
        font-weight: 700;
        color: #007B39;
        margin-bottom: 5px;
    }
    .metric-label {
        color: #4a5568;
        font-size: 0.9rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .donation-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 30px;
        margin-bottom: 60px;
    }
    .donation-card {
        background: #ffffff;
        border-radius: 20px;
        padding: 40px 30px;
        text-align: center;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        border: 2px solid #e2e8f0;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }
    .donation-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #FFA415, #007B39);
    }
    .donation-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    }
        .donation-card.featured {
            border-color: #FFA415;
            transform: scale(1.02);
            box-shadow: 0 15px 35px rgba(255, 164, 21, 0.2);
        }
        .donation-card.featured::after {
            content: 'Most Popular';
            position: absolute;
            top: -10px;
            right: 20px;
            background: #FFA415;
            color: white;
            padding: 5px 15px;
            border-radius: 15px;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
    .donation-card.featured::before {
        background: #FFA415;
    }
    .card-icon {
        font-size: 60px;
        margin-bottom: 25px;
        color: #007B39;
        transition: all 0.3s ease;
    }
    .donation-card:hover .card-icon {
        color: #FFA415;
        transform: scale(1.1);
    }
    .donation-card h3 {
        color: #2b6cb0;
        margin-bottom: 20px;
        font-size: 1.6rem;
        font-weight: 600;
    }
    .donation-card p {
        color: #718096;
        margin-bottom: 35px;
        line-height: 1.7;
        font-size: 1rem;
    }
    .button-wrapper {
        display: flex;
        justify-content: center;
    }

    .tax-info {
        text-align: center;
        margin-top: 30px;
        color: #a0aec0;
    }
    .tax-info p {
        margin: 5px 0;
    }

    /* Mobile Responsive adjustments */
    @media (max-width: 768px) {
        .section-title h2 {
            font-size: 2.2rem;
        }
        .section-title p {
            font-size: 1rem;
        }
        .impact-metrics {
            gap: 20px;
        }
        .metric-item {
            min-width: 120px;
            padding: 15px;
        }
        .metric-number {
            font-size: 2rem;
        }
        .donation-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }
        .donation-card {
            padding: 30px 20px;
        }
        .donation-card.featured {
            transform: none;
        }
    }
