body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

/* Enhanced Navbar Styling */
.navbar {
    padding: 15px 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    background-color: #ffffff !important;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s;
}

.navbar-brand:hover {
    transform: scale(1.02);
}

.navbar-brand img {
    transition: transform 0.3s;
}

.navbar-brand:hover img {
    transform: rotate(5deg);
}

.brand-text h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: bold;
    color: #2c3e50;
    letter-spacing: 0.5px;
}

.brand-text h4 {
    margin: 0;
    font-size: 0.9rem;
    color: #7f8c8d;
    font-weight: normal;
    font-style: italic;
}

/* Navigation Links Enhancement */
.navbar-nav {
    gap: 5px;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-size: 1rem;
    font-weight: 500;
    color: #2c3e50 !important;
    padding: 10px 18px !important;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    background-color: #e8f4f8;
    color: #2980b9 !important;
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 70%;
    height: 2px;
    background: linear-gradient(90deg, #2980b9, #3498db);
    transition: transform 0.3s ease;
}

.nav-link:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.nav-item.active .nav-link {
    background: linear-gradient(135deg, #2980b9 0%, #3498db 100%);
    color: #ffffff !important;
    box-shadow: 0 4px 10px rgba(41, 128, 185, 0.3);
}

.nav-item.active .nav-link::after {
    display: none;
}

/* Mobile Toggle Button */
.navbar-toggler {
    border: 2px solid #2980b9;
    padding: 8px 12px;
    border-radius: 8px;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(41, 128, 185, 0.2);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(41, 128, 185, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Responsive Menu */
@media (max-width: 991px) {
    .navbar-nav {
        padding: 15px 0;
        gap: 8px;
    }
    
    .nav-link {
        padding: 12px 20px !important;
        margin: 3px 0;
    }
    
    .nav-item.active .nav-link {
        border-radius: 8px;
    }
}

h1 {
    text-align: center;
    margin: 0;
    padding: 25px 0;
    color: #ffffff;
    font-weight: bold;
    font-size: 2.5rem;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    text-transform: uppercase;
    letter-spacing: 3px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.who {
    font-size: 1.1rem;
    text-align: justify;
    padding: 0 15px;
    margin-bottom: 30px;
}

/* Enhanced About Section */
.about-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
}

.about-intro {
    text-align: center;
    margin-bottom: 50px;
}

.who-intro {
    font-size: 1.25rem;
    line-height: 1.9;
    color: #2c3e50;
    max-width: 900px;
    margin: 0 auto;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-left: 5px solid #2980b9;
}

.who-intro strong {
    color: #2980b9;
    font-weight: 600;
}

/* Highlight Cards */
.about-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.highlight-card {
    background: white;
    padding: 35px 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid #2980b9;
}

.highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-top-color: #3498db;
}

.highlight-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.highlight-card h3 {
    color: #2c3e50;
    font-size: 1.4rem;
    margin: 15px 0;
    font-weight: 600;
}

.highlight-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

/* About Stats */
.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 50px;
    padding: 40px 20px;
    background: linear-gradient(135deg, #e8f4f8 0%, #d5e8f0 100%);
    border-radius: 20px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #2980b9;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #2980b9 0%, #3498db 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1rem;
    color: #555;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive Design for About Section */
@media (max-width: 768px) {
    .who-intro {
        font-size: 1.1rem;
        padding: 20px;
    }
    
    .about-highlights {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .about-stats {
        grid-template-columns: 1fr;
    }
}

#impact, #programs {
    margin: 50px 0;
}

#impact .container, #programs .programs-container {
    padding: 40px 20px;
}

.impact-gallery {
    display: inline-block;
    text-align: center;
    margin: 30px 25px;
    vertical-align: top;
    transition: transform 0.3s;
}

.impact-gallery:hover {
    transform: translateY(-10px);
}

.impact-gallery h6 {
    margin-top: 15px;
    font-weight: bold;
    color: #2c3e50;
    font-size: 1.1rem;
}

.impact-gallery img {
    width: 180px;
    height: 180px;
    object-fit: contain;
    border-radius: 10px;
    padding: 15px;
    background: #f8f9fa;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.programs1 {
    color: #2980b9;
    margin-bottom: 5px;
    text-decoration: none;
}

.programs1:hover {
    color: #3498db;
    text-decoration: underline;
}

.program-description {
    text-align: left;
    max-width: 200px;
}

.footer {
    background-color: #2c3e50;
    color: white;
    padding: 40px 20px 20px;
    margin-top: 50px;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-box {
    flex: 1;
    min-width: 250px;
    margin: 20px;
}

.footer-box h3 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.footer-box p {
    margin: 8px 0;
}

.footer-box ul {
    list-style: none;
    padding: 0;
}

.footer-box ul li {
    margin: 8px 0;
}

.footer-box a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-box a:hover {
    color: #3498db;
}

.social-links {
    display: flex;
    flex-direction: column;
}

.social-links a {
    margin: 5px 0;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #34495e;
}

.carousel-caption {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 5px;
}

.carousel-grey-bg {
    background-color: grey;
}

.footer-link {
    color: #ecf0f1;
}

/* Program Cards Section */
#programs {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
    padding: 60px 0;
}

.programs-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
    justify-items: center;
}

.program-card {
    position: relative;
    width: 100%;
    max-width: 380px;
    padding: 35px 30px 30px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow: hidden;
    border: 2px solid transparent;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #2980b9 0%, #3498db 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.program-card:hover::before {
    transform: scaleX(1);
}

.program-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: rgba(52, 152, 219, 0.2);
}

/* Category Tags */
.program-tag {
    position: absolute;
    top: 15px;
    right: 20px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: white;
    z-index: 1;
}

.tag-education { background: linear-gradient(135deg, #f39c12 0%, #f1c40f 100%); }
.tag-healthcare { background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%); }
.tag-women { background: linear-gradient(135deg, #3498db 0%, #2980b9 100%); }
.tag-livelihood { background: linear-gradient(135deg, #e67e22 0%, #d35400 100%); }
.tag-grassroots { background: linear-gradient(135deg, #27ae60 0%, #229954 100%); }
.tag-disaster { background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%); }

/* Icon Wrapper with Colored Circles */
.program-icon-wrapper {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.program-card:hover .program-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.icon-education { background: linear-gradient(135deg, #ffeaa7 0%, #fdcb6e 100%); }
.icon-healthcare { background: linear-gradient(135deg, #dfe6e9 0%, #b2bec3 100%); }
.icon-women { background: linear-gradient(135deg, #dfe4ea 0%, #ced6e0 100%); }
.icon-livelihood { background: linear-gradient(135deg, #ffeaa7 0%, #fab1a0 100%); }
.icon-grassroots { background: linear-gradient(135deg, #c8e6c9 0%, #a5d6a7 100%); }
.icon-disaster { background: linear-gradient(135deg, #b8daff 0%, #92c9ff 100%); }

.program-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* Program Card Typography */
.program-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.program-card:hover h3 {
    transform: scale(1.05);
}

.program-card h3.education { color: #f39c12; }
.program-card h3.healthcare { color: #9b59b6; }
.program-card h3.women { color: #3498db; }
.program-card h3.livelihood { color: #e67e22; }
.program-card h3.grassroots { color: #27ae60; }
.program-card h3.disaster { color: #e74c3c; }

.program-card p {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
    text-align: center;
    min-height: 60px;
}

/* Enhanced Read More Button */
.btn-read-more {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 28px;
    background: linear-gradient(135deg, #2980b9 0%, #3498db 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(41, 128, 185, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-read-more::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.btn-read-more:hover::before {
    left: 100%;
}

.btn-read-more svg {
    transition: transform 0.3s ease;
}

.btn-read-more:hover {
    background: linear-gradient(135deg, #3498db 0%, #5dade2 100%);
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(41, 128, 185, 0.4);
}

.btn-read-more:hover svg {
    transform: translateX(5px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .programs-container {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 30px 15px;
    }
    
    .program-card {
        max-width: 100%;
    }
}

/* Program Detail Page */
.program-detail {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

.program-detail h1 {
    color: #ffffff;
    margin-bottom: 0;
    margin-top: 0;
    padding: 25px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    text-align: center;
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.program-detail h2 {
    color: #2980b9;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.program-detail h3 {
    color: #34495e;
    margin-top: 25px;
    margin-bottom: 12px;
    font-size: 1.4rem;
}

.program-detail p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

.program-detail ul {
    margin-bottom: 20px;
}

.program-detail li {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 10px;
}

.program-highlight {
    background-color: #ecf0f1;
    padding: 20px;
    border-left: 4px solid #2980b9;
    margin: 30px 0;
}

.btn-back {
    display: inline-block;
    padding: 10px 25px;
    background-color: #7f8c8d;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 30px;
    transition: background-color 0.3s;
}

.btn-back:hover {
    background-color: #95a5a6;
    color: white;
    text-decoration: none;
}

/* Scroll to Top Button */
#scrollToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2980b9 0%, #3498db 100%);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

#scrollToTop:hover {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

#scrollToTop.show {
    display: flex;
}

/* Donate Page Styles */
.donate-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.donate-intro {
    text-align: center;
    max-width: 900px;
    margin: 30px auto 50px;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
}

.donation-options {
    margin: 50px 0;
}

.donation-options h2,
.custom-donation h2,
.payment-methods h2,
.tax-benefits h2,
.other-ways h2,
.transparency h2,
.gratitude h2 {
    text-align: center;
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.donation-options h2::after,
.custom-donation h2::after,
.payment-methods h2::after,
.tax-benefits h2::after,
.other-ways h2::after,
.transparency h2::after,
.gratitude h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #2980b9, #3498db);
}

.donation-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    position: relative;
    border: 2px solid transparent;
}

.donation-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: #3498db;
}

.donation-card.featured {
    border: 2px solid #f39c12;
    background: linear-gradient(135deg, #fff9e6 0%, #ffffff 100%);
}

.ribbon {
    position: absolute;
    top: 15px;
    right: -5px;
    background: #f39c12;
    color: white;
    padding: 5px 15px;
    font-size: 0.85rem;
    font-weight: bold;
    border-radius: 3px 0 0 3px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.donation-icon {
    font-size: 3.5rem;
    margin-bottom: 15px;
}

.donation-card h3 {
    color: #2980b9;
    font-size: 2rem;
    font-weight: bold;
    margin: 10px 0;
}

.donation-card h4 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin: 10px 0 15px;
    font-weight: 600;
}

.donation-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

/* Custom Donation Section */
.custom-donation {
    background: linear-gradient(135deg, #e8f4f8 0%, #f0f8ff 100%);
    padding: 50px 30px;
    border-radius: 20px;
    margin: 60px 0;
    text-align: center;
}

.custom-donation p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
}

.custom-amount-section {
    max-width: 700px;
    margin: 0 auto;
}

.amount-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 25px;
}

.amount-btn {
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border: 2px solid #2980b9;
    background: white;
    color: #2980b9;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.amount-btn:hover,
.amount-btn.selected {
    background: linear-gradient(135deg, #2980b9 0%, #3498db 100%);
    color: white;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(41, 128, 185, 0.3);
}

.custom-input-group {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.rupee-symbol {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: bold;
    color: #2980b9;
}

.custom-amount-input {
    width: 100%;
    padding: 15px 20px 15px 50px;
    font-size: 1.2rem;
    border: 2px solid #2980b9;
    border-radius: 50px;
    text-align: center;
    transition: all 0.3s ease;
}

.custom-amount-input:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 4px rgba(41, 128, 185, 0.1);
}

/* Payment Methods */
.payment-methods {
    margin: 60px 0;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.payment-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.payment-card h3 {
    color: #2c3e50;
    font-size: 1.4rem;
    margin-bottom: 20px;
    border-bottom: 2px solid #e8f4f8;
    padding-bottom: 10px;
}

.bank-details p,
.upi-details p {
    margin: 10px 0;
    color: #555;
}

.qr-code-placeholder {
    text-align: center;
    margin-top: 20px;
}

.qr-box {
    width: 150px;
    height: 150px;
    border: 3px dashed #2980b9;
    border-radius: 10px;
    margin: 15px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    font-weight: bold;
    color: #2980b9;
}

.btn-donate-now {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    margin: 20px 0 10px;
    transition: all 0.3s ease;
}

.btn-donate-now:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(39, 174, 96, 0.3);
}

.payment-note {
    text-align: center;
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-top: 10px;
}

/* Tax Benefits */
.tax-benefits {
    background: linear-gradient(135deg, #e8f8f5 0%, #d5f4e6 100%);
    padding: 40px;
    border-radius: 20px;
    margin: 60px 0;
}

.tax-info {
    max-width: 800px;
    margin: 0 auto;
}

.tax-info p {
    font-size: 1.1rem;
    margin: 15px 0;
    padding-left: 10px;
    color: #2c3e50;
}

/* Other Ways to Support */
.other-ways {
    margin: 60px 0;
}

.support-card {
    background: white;
    border-radius: 15px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    height: 100%;
}

.support-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.support-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.support-card h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin: 15px 0;
}

.support-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.btn-support {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #2980b9 0%, #3498db 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-support:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(41, 128, 185, 0.3);
    color: white;
    text-decoration: none;
}

/* Transparency & Gratitude */
.transparency,
.gratitude {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin: 40px 0;
    text-align: center;
}

.transparency p,
.gratitude p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    max-width: 900px;
    margin: 20px auto;
}

.transparency p strong {
    color: #2c3e50;
}

/* Responsive Design */
@media (max-width: 768px) {
    .donation-options h2,
    .custom-donation h2,
    .payment-methods h2 {
        font-size: 1.5rem;
    }
    
    .amount-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .amount-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .payment-grid {
        grid-template-columns: 1fr;
    }
}
