 /* ===== Donate CTA ===== */
 :root {
     --dark: #292929;
     --light: #F7F9FC;
     --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
 }

 :root {
     --primary-color: #4a90e2;
     /* Blue */
     --secondary-color: #50c878;
     /* Green */
     /* --accent-color: #ff6b6b; */
     /* Red */
     --dark-color: #2c3e50;
     /* Dark Blue */
     --light-color: #f8f9fa;
     /* Light Gray */
     --max-width: 1200px;
 }


 /* Why Donate Section */
 #why-donate {
     padding: 4rem 0;
     background: white;
 }

 .impact-stats {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
     gap: 20px;
     margin: 3rem 0;
 }

 .stat-card {
     background: var(--light-color);
     padding: 2rem;
     border-radius: 10px;
     text-align: center;
 }

 .stat-number {
     font-size: 2.5rem;
     font-weight: 700;
     color: var(--primary-color);
 }

 .stat-label {
     font-size: 1.1rem;
     color: var(--dark-color);
 }



 .donate-cta {
     /* background: linear-gradient(135deg, var(--accent), #ffb347); */
     text-align: center;
     color: var(--dark);
     padding: 100px 0;
 }

 .donate-box {
     background: white;
     max-width: 900px;
     margin: 0 auto;
     padding: 60px;
     border-radius: 20px;
     box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
     position: relative;
     overflow: hidden;
 }

 .donate-box:after {
     content: '';
     position: absolute;
     top: -50px;
     right: -50px;
     width: 150px;
     height: 150px;
     background: var(--primary);
     border-radius: 50%;
     opacity: 0.1;
 }

 .donate-box:before {
     content: '';
     position: absolute;
     bottom: -30px;
     left: -30px;
     width: 100px;
     height: 100px;
     background: var(--secondary);
     border-radius: 50%;
     opacity: 0.1;
 }

 .donate-methods {
     display: flex;
     justify-content: center;
     gap: 30px;
     margin-top: 50px;
     flex-wrap: wrap;
 }

 .method {
     background: white;
     padding: 30px;
     border-radius: 15px;
     min-width: 250px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
     transition: var(--transition);
     position: relative;
     z-index: 1;
     border: 1px solid rgba(0, 0, 0, 0.05);
 }

 .method:hover {
     transform: translateY(-10px);
     box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
 }

 .method h4 {
     margin-bottom: 20px;
     color: var(--secondary);
 }

 .qr-code {
     width: 180px;
     height: 180px;
     background: #f5f5f5;
     margin: 0 auto 20px;
     display: flex;
     align-items: center;
     justify-content: center;
     border-radius: 10px;
     overflow: hidden;
 }

 .qr-code img {
     width: 100%;
     height: 100%;
     object-fit: contain;
 }