.donation-section {
    max-width: 900px;
    margin: 30px auto 30px auto;
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}
.title {
    text-align: center;
    font-size: 2.8em;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    background: linear-gradient(to right, #fbd118 35%, #097b3e 100%);
    -webkit-background-clip: text;
    background-clip: text;
   -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
}
.tagline {
    text-align: center;
    font-size: 1.3em;
    color: #4e4e4e;
    margin-bottom: 30px;
    font-weight: 600;
}
.intro {
    text-align: center;
    background: linear-gradient(to right, #fbd118, #097b3e);
    color: white;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 40px;
    font-size: 1.1em;
}
.section {
    margin-bottom: 40px;
    padding: 30px;
    border-radius: 16px;
    background: linear-gradient(145deg, #f8f9fa, #e9ecef);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}
.section:hover {
    transform: translateY(-5px);
}
h2 {
    text-align: center;
    color: #0056b3;
    font-size: 2em;
    margin-bottom: 20px;
    position: relative;
}
h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 5px;
    background: linear-gradient(to right, #fbd118, #097b3e);
    margin: 15px auto;
    border-radius: 3px;
}
.qr-code {
    text-align: center;
    margin: 25px 0;
}
.qr-code img {
    max-width: 375px;
    border: 12px solid #fff;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    background: white;
}
.ul {
    list-style: none;
    padding: 0;
}
.ul .li {
    background: #fff;
    margin: 12px 0;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    font-size: 1.1em;
}
.ul .li strong {
    color: #138808;
}
@media (max-width: 768px) {
    h1 { font-size: 2.2em; }
    .qr-code img { max-width: 260px; }
}