 
        /* Donate Button Style */
.btn-donate {
            display: inline-block;
            width: 100%;
            padding: 15px 20px;
            font-size: 16px;
            color: white;
            background-color: #28a745;
            border-radius: 5px;
            text-align: center;
            text-decoration: none;
            transition: transform 0.3s ease, background-color 0.3s ease;
}

.btn-donate:hover {
            transform: scale(1.05);
            background-color: #218838;
        }

        /* Mission Impact Section Style */
.mission-impact {
            background-color: #f9f9f9;
            padding: 60px 0;
        }

.mission-impact h2 {
            font-size: 32px;
            text-align: center;
            margin-bottom: 40px;
            color: #333;
        }

.mission-impact p {
            font-size: 18px;
            line-height: 1.6;
            color: #555;
            text-align: left;
            margin-bottom: 30px;
        }

        /* Timeline Section */
.timeline {
            list-style-type: none;
            padding: 0;
        }

.timeline-item {
            display: flex;
            justify-content: flex-start;
            padding: 20px;
            border-bottom: 2px solid #ddd;
        }

.timeline-item .timeline-date {
            width: 150px;
            font-weight: bold;
            color: #28a745;
        }

.timeline-item .timeline-content {
            flex-grow: 1;
            padding-left: 20px;
        }

.timeline-item .timeline-content h3 {
            margin: 0;
            font-size: 24px;
        }

        /* Timeline Images */
.timeline-item .timeline-image {
            margin-top: 20px;
            text-align: left;
        }

.timeline-item .timeline-image img {
            width: 80%;
            max-width: 400px;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        /* Image Gallery Style */
.gallery-section {
            margin-top: 40px;
        }

.gallery-section h2 {
            font-size: 28px;
            text-align: left;
            margin-bottom: 30px;
        }

.gallery {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 20px;
        }

.gallery-item {
            width: 30%;
            position: relative;
        }

.gallery-item img {
            width: 100%;
            border-radius: 8px;
            transition: transform 0.3s ease;
        }

.gallery-item img:hover {
            transform: scale(1.05);
        }
   
  