/* --- HEADER BACKGROUND --- */
.donate-header {
    /* Use an image depicting support, hands, or party flag */
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('donate-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    text-align: center;
    color: #ffffff;
}

.donate-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

/* --- LAYOUT --- */
.donate-layout {
    display: flex;
    gap: 40px;
    align-items: flex-start; /* Aligns boxes to top */
}

/* --- LEFT COLUMN: PAYMENT BOX --- */
.payment-box {
    flex: 2; /* Takes up 2/3 of space */
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border-top: 5px solid var(--primary);
}

.payment-method {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px dashed #ddd;
}

.payment-method h3 {
    color: var(--text-dark);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* QR Code Styling */
.qr-container {
    text-align: center;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    display: inline-block;
    border: 2px solid #eee;
}

.qr-img {
    width: 200px; /* Standard QR size */
    height: 200px;
    object-fit: contain;
}

.upi-id {
    font-weight: bold;
    color: #555;
    margin-top: 10px;
    font-family: monospace;
    font-size: 1.1rem;
    background: #e9ecef;
    padding: 5px 10px;
    border-radius: 4px;
}

/* Bank Details Table */
.bank-details {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.bank-details td {
    padding: 12px;
    border-bottom: 1px solid #f0f0f0;
}

.bank-details td:first-child {
    color: #666;
    width: 40%;
}

.bank-details td:last-child {
    color: #222;
    font-size: 1.05rem;
}

/* --- RIGHT COLUMN: INFO & LEGAL --- */
.info-box {
    flex: 1; /* Takes up 1/3 of space */
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.trust-card {
    background: #e0f7fa; /* Light cyan background matching theme */
    padding: 25px;
    border-radius: 10px;
}

.trust-card h3 {
    margin-bottom: 15px;
    color: #006064;
}

.check-list {
    list-style: none;
    padding: 0;
}

.check-list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.check-list li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

/* Legal Disclaimer Box */
.legal-disclaimer {
    background: #fff3cd; /* Light yellow warning color */
    border: 1px solid #ffeeba;
    padding: 20px;
    border-radius: 10px;
    font-size: 0.9rem;
}

.legal-disclaimer h4 {
    color: #856404;
    margin-bottom: 10px;
}

.legal-disclaimer p {
    margin-bottom: 8px;
    line-height: 1.4;
    color: #555;
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 768px) {
    .donate-layout {
        flex-direction: column;
    }
    
    .qr-container {
        display: block;
        width: 100%;
    }

    .bank-details td {
        display: block;
        width: 100%;
        padding: 5px 0;
    }
    
    .bank-details td:first-child {
        font-weight: normal;
        font-size: 0.9rem;
    }
}