 /* ===== 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;

     --primary: #6a1b9a;
     --secondary: #e84393;
     --accent: #4caf50;
     --light: #f5f5f5;
     --dark: #333;
     --text: #444;
     --white: #fff;
     --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
     --transition: all 0.3s ease;
 }



 .section-title {
     font-weight: 700;
     font-size: 3rem;
     text-align: unset;
     padding-bottom: 0px;
     position: relative;
     margin-bottom: 30px;
 }


 .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: 280px;
     height: 280px;
     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
 }