@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --font-family: 'Poppins', sans-serif;
    --primary: #0d6efd;
    --secondary: #28a745;
    --dark: #0f172a;
    --light-bg: #f8fafc;
    --accent: #ffd700;
}

.donate-hero {
    /* background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url('../images/donate-header.jpg') center 25%/cover; */
    color: #fff;
    padding: 120px 20px;
    text-align: center;
}

.donate-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 15px;
}

.donate-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

.donate-content {
    padding: 80px 0;
    background: var(--light-bg);
}

.donate-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.info-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.info-card h2 {
    color: var(--dark);
    margin-bottom: 25px;
    font-size: 2rem;
    font-weight: 600;
}

.info-card p {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 20px;
}

.benefit-tag {
    display: inline-block;
    background: #e0f2fe;
    color: #0369a1;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    margin-top: 10px;
}

.payment-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 2px solid #e2e8f0;
}

.payment-card h3 {
    margin-bottom: 25px;
    font-size: 1.5rem;
    color: var(--primary);
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 10px;
}

.bank-details {
    margin-bottom: 30px;
}

.bank-details p {
    margin-bottom: 10px;
    font-size: 1.05rem;
    color: #334155;
}

.bank-details strong {
    color: var(--dark);
    width: 140px;
    display: inline-block;
}

.qr-section {
    text-align: center;
    border-top: 2px dashed #e2e8f0;
    padding-top: 30px;
}

.qr-placeholder {
    width: 200px;
    height: 200px;
    background: #f1f5f9;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    border: 1px solid #cbd5e1;
}

.qr-placeholder i {
    font-size: 4rem;
    color: #94a3b8;
}

@media (max-width: 992px) {
    .donate-grid {
        grid-template-columns: 1fr;
    }
}


/* Responsive Design */
/* Extra large devices (large desktops, 1920px and up) */
@media (min-width: 1920px) {
    .container {
        max-width: 1850px;
        margin: 0 auto;
    }
}

/* Large devices (desktops, 1366px) */
@media (max-width: 1366px) {
    .container {
        max-width: 1280px;
        margin: 0 auto;
    }
}

/* Medium devices (tablets, 768px) */
@media (max-width: 768px) {
    .donate-hero {
        padding: 80px 20px;
    }

    .donate-hero h1 {
        font-size: 2.5rem;
    }

    .donate-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Small devices (large mobiles, 480px) */
@media (max-width: 480px) {
    .donate-hero h1 {
        font-size: 2rem;
    }

    .info-card,
    .payment-card {
        padding: 25px;
    }

    .bank-details strong {
        width: 100%;
        display: block;
        margin-bottom: 5px;
    }
}

/* Extra small devices (small mobiles, 364px) */
@media (max-width: 364px) {
    .donate-hero h1 {
        font-size: 1.8rem;
    }
}