

.payment-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    padding: 40px;
}

.payment-card {
    background: #ffffff;
    border-radius: 12px;
    text-align: center;
    padding: 25px 15px;
    text-decoration: none;
    color: #333;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.payment-card img {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}

.payment-card h6 {
    font-size: 14px;
    font-weight: 600;
}

.payment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    background: #f8f9fa;
}


.donor-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    transition: 0.3s ease;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.donor-card:hover {
    transform: translateY(-5px);
}

.donor-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
}

.responsive-btn {
    padding: 10px 20px;
    font-size: 16px;
}


.donor-card {
    background: #fff;
    border-radius: 12px;
    padding: 15px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.donor-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
}

.donor-info {
    margin-top: 10px;
}

.donor-info h5 {
    font-size: 16px;
    font-weight: 600;
}

.donor-info p {
    font-size: 14px;
    line-height: 1.4;
    min-height: 40px; /* keeps all cards same height */
}

.donor-card {
    width: 100%;
    max-width: 260px;
}