body {
    background: #ffffff;
    display: flex;
    justify-content: center;
    padding: 30px;
}

.don-wrapper {
    max-width: 900px;
    width: 90%;
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
}

.don-title {
    font-size: 2.2rem;
    color: #2c2c2c;
    margin-bottom: 10px;
}

.don-text {
    color: #555;
    margin-bottom: 35px;
    font-size: 1.1rem;
}

.don-options {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.don-card {
    background: #f2f2f2;
    padding: 25px;
    border-radius: 15px;
    width: 260px;
    text-align: center;
    transition: transform .2s, box-shadow .2s;
}

.don-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.don-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 15px;
}

.don-card h3 {
    margin-bottom: 10px;
    color: #2c2c2c;
    font-size: 1.3rem;
}

.don-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background: #2c2c2c;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: background .2s;
}

.don-btn:hover {
    background: #444;
}
