        .donation-section {
            background: linear-gradient(135deg, #f5cf9e, #f5cf9e);
            padding: 40px 40px;
            text-align: center;
        }
        .donation-card {
            border: 1px solid #ddd;
            border-radius: 15px;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
            background-color: #ffffff;
            padding: 30px;
            margin: 15px 0;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .donation-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
        }
        .donation-card h2 {
            font-size: 2.2rem;
            color: #343a40;
            margin-bottom: 20px;
        }
        .donation-card p {
            font-size: 1.1rem;
            color: #6c757d;
            margin-bottom: 30px;
        }
        .donation-card ul {
            list-style: none;
            padding: 0;
            margin-bottom: 30px;
        }
        .donation-card ul li {
            font-size: 1.1rem;
            color: #495057;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
        }
        .donation-card .feature-icon {
            font-size: 1.5rem;
            color: #007bff;
            margin-right: 15px;
        }
        .donation-button {
            background-color: #3ca591;
            color: #ffffff;
            padding: 15px 35px;
            font-size: 1.3rem;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            transition: background-color 0.3s, transform 0.3s;
        }
        .donation-button:hover {
            background-color: #218838;
            transform: scale(1.05);
        }
        .donation-button img {
            margin-right: 12px;
            width: 120px;
        }
        .section-header {
            margin-bottom: 50px;
        }
        .section-header h1 {
            font-size: 3rem;
            color: #343a40;
            margin-bottom: 15px;
        }
        .section-header p {
            font-size: 1.2rem;
            color: #6c757d;
        }
        .donation-image {
            max-width: 100%;
            height: auto;
            margin-bottom: 30px;
        }
        ul.list-unstyled {
    margin-left: 25%;
}              ul.dropdown-menu.show {
         background-color: #7e0c0b;
         /* color: white; */
         }
         a.dropdown-item {
         color: white !important;
         }
         a.dropdown-item:hover {
         background-color: rgb(91 11 10) !important;
         }