
    /* ============================================
       FORCE EDGE-TO-EDGE - FULL WIDTH
       ============================================ */
    .main-content,
    .container,
    .container-fluid,
    .inner-container,
    .row,
    .col,
    body {
        max-width: 100% !important;
        width: 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        overflow-x: hidden !important;
    }
    
    /* ============================================
       HERO SECTION - FULL WIDTH
       ============================================ */
    .donate-hero {
        background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('{% static "images/donate.JPG" %}');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        text-align: left;
        color: white;
        width: 100%;
        position: relative;
        min-height: 450px;
        display: flex;
        align-items: center;
        margin: 0;
        padding: 0;
    }
    
    .donate-hero .hero-content {
        width: 100%;
        max-width: 1400px;
        margin-left: 5%;
        margin-right: auto;
        padding: 100px 0;
    }
    
    .donate-hero h1 {
        font-size: 52px;
        font-weight: 800;
        margin-bottom: 20px;
        text-shadow: 3px 3px 6px rgba(0,0,0,0.4);
    }
    
    .donate-hero p {
        font-size: 18px;
        max-width: 550px;
        opacity: 0.95;
    }
    
    /* ============================================
       WHY DONATE SECTION - BEAUTIFUL GREEN GRADIENT
       ============================================ */
    .why-donate-section {
        background: linear-gradient(135deg, #0f4c2a 0%, hsl(324, 83%, 51%) 50%, #2c9b55 100%);
        padding: 70px 0;
        width: 100%;
        margin: 0;
        position: relative;
    }
    
    .why-donate-wrapper {
        max-width: 1400px;
        margin-left: 5%;
        margin-right: 5%;
        display: flex;
        gap: 60px;
        align-items: center;
        justify-content: space-between;
    }
    
    .why-donate-content {
        flex: 1.2;
    }
    
    .why-donate-title {
        font-size: 38px;
        font-weight: 800;
        color: white;
        margin-bottom: 25px;
    }
    
    .why-donate-title span {
        font-size: 14px;
        letter-spacing: 4px;
        display: block;
        color: #ffd700;
        margin-bottom: 12px;
    }
    
    .why-donate-text {
        font-size: 16px;
        line-height: 1.8;
        color: rgba(255,255,255,0.95);
        margin-bottom: 30px;
    }
    
    .why-donate-text p {
        margin-bottom: 18px;
    }
    
    .why-donate-text strong {
        color: #ffd700;
    }
    
    /* Statistics on the RIGHT side */
    .impact-stats-side {
        flex: 0.8;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .stat-item-horizontal {
        background: rgba(255,255,255,0.15);
        backdrop-filter: blur(10px);
        border-radius: 16px;
        padding: 20px 25px;
        transition: transform 0.3s;
        border: 1px solid rgba(255,255,255,0.2);
    }
    
    .stat-item-horizontal:hover {
        transform: translateX(-5px);
        background: rgba(255,255,255,0.25);
    }
    
    .stat-number-horizontal {
        font-size: 36px;
        font-weight: 800;
        color: #ffd700;
        line-height: 1.2;
    }
    
    .stat-label-horizontal {
        font-size: 14px;
        color: rgba(255,255,255,0.9);
        font-weight: 500;
    }
    
    /* ============================================
       TWO COLUMN LAYOUT - SAME LEFT EDGE AS HERO
       ============================================ */
    .donation-layout {
        width: 100%;
        margin: 0;
        padding: 60px 0;
        background: white;
    }
    
    .layout-wrapper {
        max-width: 1400px;
        margin-left: 5%;
        margin-right: 5%;
        display: flex;
        gap: 50px;
        width: auto;
    }
    
    .programs-section {
        flex: 1.2;
    }
    
    .form-section {
        flex: 0.8;
    }
    
    /* ============================================
       PROGRAMS SECTION - VERTICAL STACK
       ============================================ */
    .programs-running {
        background: #f8f9fa;
        border-radius: 20px;
        padding: 25px;
    }
    
    .section-header {
        text-align: left;
        margin-bottom: 25px;
    }
    
    .section-header h2 {
        font-size: 26px;
        font-weight: 800;
        color: #2c7a4d;
    }
    
    .section-header span {
        font-size: 12px;
        letter-spacing: 3px;
        display: block;
        color: #e67e22;
        margin-bottom: 8px;
    }
    
    /* PROGRAMS STACK VERTICALLY */
    .programs-grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    /* Scroll Animation for Program Cards */
    .program-card {
        background: white;
        border-radius: 14px;
        overflow: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 2px 8px rgba(0,0,0,0.06);
        cursor: pointer;
        display: flex;
        flex-direction: row;
        align-items: center;
        opacity: 0;
        transform: translateY(30px);
        animation: slideUpFade 0.5s ease forwards;
    }
    
    .program-card:nth-child(1) { animation-delay: 0.1s; }
    .program-card:nth-child(2) { animation-delay: 0.2s; }
    .program-card:nth-child(3) { animation-delay: 0.3s; }
    .program-card:nth-child(4) { animation-delay: 0.4s; }
    .program-card:nth-child(5) { animation-delay: 0.5s; }
    .program-card:nth-child(6) { animation-delay: 0.6s; }
    .program-card:nth-child(7) { animation-delay: 0.7s; }
    
    @keyframes slideUpFade {
        0% {
            opacity: 0;
            transform: translateY(30px);
        }
        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .program-card:hover {
        transform: translateX(5px) translateY(-3px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    }
    
    .program-image {
        width: 100px;
        height: 100px;
        object-fit: cover;
        flex-shrink: 0;
    }
    
    .program-info {
        padding: 12px 18px;
        flex: 1;
    }
    
    .program-info h3 {
        font-size: 17px;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 6px;
    }
    
    .program-info p {
        font-size: 12px;
        color: #666;
        line-height: 1.4;
        margin-bottom: 8px;
    }
    
    .donate-btn-small {
        display: inline-block;
        background: #2c7a4d;
        color: white;
        padding: 5px 14px;
        border-radius: 25px;
        text-decoration: none;
        font-size: 11px;
        font-weight: 600;
        transition: all 0.3s;
        border: none;
        cursor: pointer;
        width: auto;
        text-align: center;
    }
    
    .donate-btn-small:hover {
        background: #1e5a38;
        transform: translateX(3px);
        color: white;
    }
    
    /* Load More Button with Animation */
    .load-more-container {
        text-align: center;
        margin-top: 25px;
    }
    
    .load-more-btn {
        background: transparent;
        border: 2px solid #2c7a4d;
        color: #2c7a4d;
        padding: 8px 28px;
        border-radius: 40px;
        font-weight: 600;
        font-size: 13px;
        transition: all 0.3s;
        cursor: pointer;
    }
    
    .load-more-btn:hover {
        background: #2c7a4d;
        color: white;
        transform: scale(1.02);
    }
    
    /* ============================================
       DONATION FORM
       ============================================ */
    .donation-form-section {
        background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
        border-radius: 20px;
        padding: 25px;
        position: sticky;
        top: 20px;
        transition: all 0.3s ease;
    }
    
    .form-container {
        background: white;
        border-radius: 18px;
        padding: 25px;
        box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    }
    
    .form-container h2 {
        text-align: center;
        font-size: 22px;
        font-weight: 800;
        color: #2c7a4d;
        margin-bottom: 8px;
    }
    
    .form-container p {
        text-align: center;
        color: #666;
        margin-bottom: 20px;
        font-size: 13px;
    }
    
    .form-group {
        margin-bottom: 18px;
    }
    
    .form-group label {
        font-weight: 600;
        color: #333;
        margin-bottom: 6px;
        display: block;
        font-size: 13px;
    }
    
    .form-group label .required {
        color: #dc3545;
    }
    
    .form-control, .form-select {
        width: 100%;
        padding: 10px 14px;
        border: 1px solid #e0e0e0;
        border-radius: 8px;
        font-size: 14px;
        transition: all 0.3s;
    }
    
    .form-control:focus, .form-select:focus {
        border-color: #2c7a4d;
        outline: none;
        box-shadow: 0 0 0 3px rgba(44,122,77,0.1);
    }
    
    .btn-submit-donation {
        background: #2c7a4d;
        color: white;
        padding: 12px 25px;
        border: none;
        border-radius: 50px;
        font-size: 15px;
        font-weight: 700;
        width: 100%;
        transition: all 0.3s;
        cursor: pointer;
    }
    
    .btn-submit-donation:hover {
        background: #1e5a38;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(44,122,77,0.3);
    }
    
    .btn-amount {
        background: #f0f2f5;
        border: 1px solid #e0e0e0;
        padding: 8px 10px;
        border-radius: 8px;
        width: 100%;
        cursor: pointer;
        transition: all 0.3s;
        font-weight: 600;
        font-size: 13px;
    }
    
    .btn-amount:hover {
        background: #2c7a4d;
        color: white;
        border-color: #2c7a4d;
        transform: translateY(-2px);
    }
    
    .info-box {
        background: #e8f5e9;
        padding: 12px;
        border-radius: 10px;
        margin-top: 18px;
        text-align: center;
    }
    
    .info-box p {
        margin: 0;
        font-size: 11px;
        color: #2c7a4d;
    }
    
    .contact-link {
        color: #2c7a4d;
        text-decoration: none;
        font-weight: 600;
    }
    
    .alert {
        padding: 10px 12px;
        border-radius: 8px;
        margin-bottom: 18px;
        font-size: 13px;
    }
    .alert-success {
        background: #d4edda;
        color: #155724;
        border: 1px solid #c3e6cb;
    }
    .alert-danger {
        background: #f8d7da;
        color: #721c24;
        border: 1px solid #f5c6cb;
    }
    
    /* Scroll Animation for Sections */
    .fade-up {
        opacity: 0;
        transform: translateY(40px);
        transition: all 0.6s ease-out;
    }
    
    .fade-up.visible {
        opacity: 1;
        transform: translateY(0);
    }
    
    /* ============================================
       RESPONSIVE
       ============================================ */
    @media (max-width: 1100px) {
        .layout-wrapper {
            flex-direction: column;
        }
        .form-section {
            position: static;
        }
        .donation-form-section {
            position: static;
        }
        .why-donate-wrapper {
            flex-direction: column;
        }
        .impact-stats-side {
            width: 100%;
            flex-direction: row;
            flex-wrap: wrap;
        }
        .stat-item-horizontal {
            flex: 1;
            min-width: 150px;
        }
    }
    
    @media (max-width: 768px) {
        .donate-hero {
            min-height: 350px;
        }
        .donate-hero .hero-content {
            padding: 60px 20px;
            margin-left: 0;
            padding-left: 20px;
        }
        .why-donate-wrapper {
            margin-left: 20px;
            margin-right: 20px;
        }
        .layout-wrapper {
            margin-left: 20px;
            margin-right: 20px;
        }
        .donate-hero h1 {
            font-size: 32px;
        }
        .donate-hero p {
            font-size: 15px;
        }
        .why-donate-section {
            padding: 50px 0;
        }
        .why-donate-title {
            font-size: 30px;
        }
        .why-donate-text {
            font-size: 15px;
        }
        .stat-number-horizontal {
            font-size: 28px;
        }
        .section-header h2 {
            font-size: 22px;
        }
        .form-container {
            padding: 20px;
        }
        .program-card {
            flex-direction: column;
        }
        .program-image {
            width: 100%;
            height: 150px;
        }
        .btn-amount {
            padding: 6px 8px;
            font-size: 11px;
        }
        .impact-stats-side {
            flex-direction: column;
        }
    }
    
    @media (max-width: 480px) {
        .donate-hero h1 {
            font-size: 28px;
        }
        .why-donate-title {
            font-size: 26px;
        }
        .stat-number-horizontal {
            font-size: 24px;
        }
    }
