
        .donation-header {
            background-color: var(--secondary-color);
            border-radius: 8px;
            padding: 2rem 0;
            margin-bottom: 3rem;
            transition: all 0.5s ease;
        }
        .donation-header:hover {
            box-shadow: 0 10px 30px rgba(var(--primary-rgb), 0.2);
        }
        .section-title {
            position: relative;
            color: var(--primary-color);
            display: inline-block;
            padding-bottom: 0.5rem;
        }
        .section-title::after {
            content: '';
            position: absolute;
            left: 50%;
            bottom: 0;
            width: 50px;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
            transform: translateX(-50%);
        }
        .fund-card {
            border: none;
            transition: all 0.3s ease;
            height: 100%;
            border-radius: 8px;
            overflow: hidden;
        }
        .fund-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(var(--primary-rgb), 0.15);
        }
        .fund-card .card-body {
            padding: 2rem;
        }
        .fund-card .card-title {
            color: var(--primary-color);
            margin-bottom: 1rem;
            position: relative;
            padding-bottom: 0.5rem;
        }
        .fund-card .card-title::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 2px;
            background-color: var(--accent-color);
        }
        .fund-card .card-text {
            color: var(--text-color);
            margin-bottom: 1.5rem;
        }
        .fund-icon {
            color: var(--accent-color);
            background-color: rgba(var(--primary-rgb), 0.1);
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            transition: all 0.4s ease;
        }
        .fund-card:hover .fund-icon {
            transform: scale(1.1);
            background-color: var(--primary-color);
            color: white;
        }
        .btn-donate {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 0.75rem 2rem;
            border-radius: 50px;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        .btn-donate::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: var(--primary-dark);
            border-radius: 50px;
            z-index: -2;
        }
        .btn-donate::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0%;
            height: 100%;
            background-color: var(--accent-color);
            transition: all 0.3s ease;
            border-radius: 50px;
            z-index: -1;
        }
        .btn-donate:hover {
            color: white;
            box-shadow: 0 5px 15px rgba(var(--primary-rgb), 0.3);
        }
        .btn-donate:hover::before {
            width: 100%;
        }
        .progress-info {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.5rem;
        }
        .progress {
            height: 10px;
            border-radius: 5px;
            margin-bottom: 1.5rem;
        }
        .progress-bar {
            background-color: var(--primary-color);
            border-radius: 5px;
        }
        .donor-card {
            background-color: var(--light-bg);
            border-radius: 8px;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            transition: all 0.3s ease;
        }
        .donor-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(var(--primary-rgb), 0.1);
        }
        .donor-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 1rem;
        }
        .donor-name {
            font-weight: 600;
            color: var(--primary-color);
        }
        .donor-message {
            margin-top: 1rem;
            font-style: italic;
            color: var(--text-color);
        }
        .donation-form-card {
            border: none;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(var(--primary-rgb), 0.1);
        }
        .donation-form-header {
            background-color: var(--primary-color);
            color: white;
            padding: 1.5rem;
        }
        .donation-amount-btn {
            background-color: var(--light-bg);
            border: 2px solid transparent;
            border-radius: 8px;
            padding: 0.75rem 0;
            margin-bottom: 1rem;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        .donation-amount-btn:hover, .donation-amount-btn.active {
            background-color: rgba(var(--primary-rgb), 0.1);
            border-color: var(--primary-color);
            color: var(--primary-color);
        }
        .custom-amount-input {
            border: 2px solid rgba(var(--primary-rgb), 0.2);
            border-radius: 8px;
            padding: 0.75rem 1rem;
            transition: all 0.3s ease;
        }
        .custom-amount-input:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.25rem rgba(var(--primary-rgb), 0.25);
        }
        .donor-info-form label {
            font-weight: 500;
            margin-bottom: 0.5rem;
        }
        .donor-info-form .form-control {
            border: 2px solid rgba(var(--primary-rgb), 0.2);
            border-radius: 8px;
            padding: 0.75rem 1rem;
            transition: all 0.3s ease;
        }
        .donor-info-form .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.25rem rgba(var(--primary-rgb), 0.25);
        }
        .donor-info-form .form-check-input:checked {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
        }
        .impact-card {
            text-align: center;
            padding: 2rem;
            border-radius: 8px;
            transition: all 0.3s ease;
            height: 100%;
        }
        .impact-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(var(--primary-rgb), 0.15);
        }
        .impact-icon {
            color: var(--accent-color);
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            transition: all 0.3s ease;
        }
        .impact-card:hover .impact-icon {
            transform: scale(1.2);
        }
        .impact-title {
            color: var(--primary-color);
            font-weight: 600;
            margin-bottom: 1rem;
        }
        .testimonial-carousel .testimonial-item {
            padding: 2rem;
            border-radius: 8px;
            background-color: var(--light-bg);
            height: 100%;
        }
        .testimonial-quote {
            font-style: italic;
            margin-bottom: 1.5rem;
            position: relative;
            padding-left: 2rem;
        }
        .testimonial-quote::before {
            content: '"';
            position: absolute;
            left: 0;
            top: -0.5rem;
            font-size: 3rem;
            color: var(--accent-color);
            font-family: serif;
            line-height: 1;
        }
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        .testimonial-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 1rem;
        }
        .testimonial-name {
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 0.25rem;
        }
        .testimonial-role {
            font-size: 0.875rem;
            color: var(--text-color);
        }
    

