.page-header {
    background: linear-gradient(rgba(10, 92, 54, 0), rgba(10, 92, 54, 0)), url('https://static.vecteezy.com/system/resources/thumbnails/028/292/083/small/banner-background-full-color-green-and-black-gradations-slash-vector.jpg');
    background-size: cover;
    background-position: center;
    padding: 120px 0 80px;
    color: white;
    text-align: center;
    min-height: 120px;
}

.donation-form {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px var(--shadow);
    height: 100%;
}

.amount-btn {
    padding: 1rem;
    background-color: var(--off-white);
    border: 2px solid #ddd;
    border-radius: var(--border-radius);
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
    margin-bottom: 0.5rem;
    width: 100%;
}

.amount-btn:hover,
.amount-btn.active {
    background-color: var(--primary-green);
    color: var(--white);
    border-color: var(--primary-green);
}

.payment-method {
    background-color: var(--off-white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
}

.qr-code {
    width: 200px;
    height: 200px;
    background-color: #f0f0f0;
    margin: 1rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.cause-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px var(--shadow);
    height: 100%;
    transition: var(--transition);
    text-align: center;
}

.cause-card:hover {
    transform: translateY(-10px);
}

.cause-icon {
    width: 70px;
    height: 70px;
    background-color: var(--light-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary-green);
    font-size: 1.8rem;
}

.donation-progress {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px var(--shadow);
    margin: 2rem 0;
}

.progress-bar {
    height: 20px;
    border-radius: 10px;
    overflow: hidden;
    background-color: var(--light-green);
}

.progress-fill {
    height: 100%;
    background-color: var(--primary-green);
    border-radius: 10px;
    transition: width 1s ease;
}

.recent-donations {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px var(--shadow);
    max-height: 400px;
    overflow-y: auto;
}

.donation-item {
    padding: 1rem;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.donation-item:last-child {
    border-bottom: none;
}

.donor-name {
    font-weight: 500;
    color: var(--primary-green);
}

.donation-amount {
    font-weight: 700;
    color: var(--gold);
}

.donation-time {
    font-size: 0.9rem;
    color: #666;
}

@media (max-width: 768px) {
    .page-header {
        padding: 100px 0 60px;
    }

    .qr-code {
        width: 150px;
        height: 150px;
    }
}