.donate-hero {
    min-height: 46vh;
    background: linear-gradient(rgba(15, 23, 42, 0.76), rgba(15, 23, 42, 0.76)), url('/import/empowerment-raised-hands-diverse-arms-typography.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
}

.donation-form-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: clamp(1.25rem, 4vw, 3rem);
    box-shadow: var(--shadow-md);
    margin-top: -80px;
    position: relative;
    z-index: 10;
}

.amount-btn {
    padding: 14px 10px;
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius);
    background: transparent;
    font-weight: 700;
    transition: all 0.3s ease;
    width: 100%;
}

.amount-btn:hover, .amount-btn.active {
    border-color: var(--accent);
    background: rgba(245, 158, 11, 0.1);
    color: var(--primary);
}

.impact-info-box {
    background: var(--neutral-50);
    border-radius: var(--radius-lg);
    padding: 30px;
    border-left: 4px solid var(--accent);
}

.donate-input {
    background: var(--neutral-50);
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius);
    padding: 15px 20px;
    transition: all 0.3s ease;
}

.donate-input:focus {
    background: white;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.1);
}

.step-label {
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #bbb;
    margin-bottom: 10px;
    display: block;
}

@media (max-width: 991px) {
    .donation-form-card { margin-top: -40px; }
}

@media (max-width: 575px) {
    .donate-hero { min-height: 38vh; padding: 5rem 0 4rem; }
    .amount-btn { font-size: 0.82rem; }
}
