.don-hero {
    background: linear-gradient(135deg, #007bff, #00bfff);
    color: white;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.don-hero h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    animation: fadeIn 1.5s ease-in-out;
}

.don-hero p {
    font-size: 18px;
    animation: fadeIn 2s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.don-container {
    max-width: 800px;
    margin:  auto ;
    background: white;
    border-radius: 12px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
    padding: 40px;
    text-align: center;
}

.don-container h2 {
    font-size: 28px;
    color: #134664;
    margin-bottom: 20px;
}

.don-container p {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

.iban-section {
    background: #f1f8ff;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.iban-section span {
    font-size: 18px;
    font-weight: 500;
    color: #333;
}

.iban-section button {
    background: #134664;
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.3s ease;
}

.iban-section button:hover {
    background: #0056b3;
}

.qr-section {
    margin-top: 30px;
}

.qr-section h4 {
    font-size: 20px;
    color: #134664;
    margin-bottom: 15px;
}

#qrcode {
    display: inline-block;
    padding: 15px;
    background: #f1f8ff;
    border-radius: 10px;
}

.contact-section {
    margin-top: 40px;
    padding: 30px;
    background: #f1f8ff;
    border-radius: 10px;
    text-align: center;
}

.contact-section h4 {
    font-size: 22px;
    color: #134664;
    margin-bottom: 15px;
}

.contact-section a {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-section a:hover {
    color: #0056b3;
}