    body {
    font-family: 'Times New Roman', Times, serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4; /* Light background for the entire page */
}
    /* Testimonials section */
.testimonials {
    margin: 40px 0;
    text-align: center;
}

.testimonials h2 {
    font-size: 2.5em;
    color: #2c3e50;
    margin-bottom: 20px;
}

.testimonial-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px; /* Space between testimonials */
}

.testimonial {
    background-color: #ecf6fd;
    padding: 20px;
    border-radius: 5px;
    margin: 10px;
    max-width: 300px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.testimonial p {
    font-style: italic;
    color: #34495e;
}

.testimonial cite {
    display: block;
    margin-top: 10px;
    font-weight: bold;
    color: #2c3e50;
}

    .events {
        text-align: center;
        padding: 40px 20px;
        background-color: #ffffff; /* White background */
        border-radius: 8px; /* Rounded corners */
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); /* Subtle shadow */
        max-width: 1200px; /* Limit maximum width */
        margin: auto; /* Center the section */
    }

    h1 {
        color: #27ae60; /* Main heading color */
        margin-bottom: 20px;
    }

    .event-list {
        display: flex;
        flex-wrap: wrap; /* Allow wrapping on smaller screens */
        justify-content: center;
        gap: 30px; /* Space between event items */
        margin: 20px 0; /* Margin around the event list */
    }

    .event {
        background: #f9f9f9; /* Light background for items */
        border: 1px solid #ddd; /* Light border */
        border-radius: 10px; /* Rounded corners */
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Card shadow */
        width: calc(25% - 30px); /* Responsive width */
        text-align: left; /* Left align text */
        transition: transform 0.3s, box-shadow 0.3s; /* Transition effects */
    }

    .event:hover {
        transform: translateY(-5px); /* Lift effect on hover */
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2); /* Deeper shadow on hover */
    }

    .event-image {
        width: 100%;
        height: 200px; /* Fixed height for uniformity */
        object-fit: cover; /* Cover the area without distorting the image */
        border-top-left-radius: 10px; /* Round top corners */
        border-top-right-radius: 10px; /* Round top corners */
    }

    .event-date {
        font-size: 1.1em; /* Slightly larger font size for date */
        color: #555; /* Darker color for date text */
    }

    .learn-more-button {
        display: inline-block;
        margin: 10px 0;
        padding: 10px 15px;
        background-color: #007bff; /* Blue button color */
        color: white;
        text-decoration: none;
        border-radius: 5px;
        transition: background-color 0.3s; /* Smooth transition for background color */
    }

    .learn-more-button:hover {
        background-color: #0056b3; /* Darker shade of blue on hover */
    }

    .event-info {
        margin-top: 40px;
        padding: 20px;
        background: #e6f9e6; /* Light green background */
        border-radius: 8px; /* Rounded corners */
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Shadow for emphasis */
    }

    .event-info h2 {
        color: #2c3e50; /* Darker heading color */
        margin-bottom: 10px;
    }

   
    /* Responsive Styles */
    @media (max-width: 1200px) {
        .event {
            width: calc(33.33% - 30px); /* 3 columns on medium screens */
        }
    }

    @media (max-width: 800px) {
        .event {
            width: calc(50% - 30px); /* 2 columns on smaller screens */
        }
    }

    @media (max-width: 600px) {
        .event {
            width: 100%; /* Single column on extra small screens */
        }
    }