/* Upcoming Event Section */
#upcoming-event {
    padding: 50px 40px;
    background: #f9f9f9;
    border-radius: 10px;
    text-align: center;
}

.event-details {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.event-image {
    width: 40%;
    max-height: 300px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}

.event-image:hover {
    transform: scale(1.05);
}

.event-info {
    flex: 1;
    text-align: left;
}

.event-info h3 {
    font-size: 28px;
    color: #1E3A8A;
    margin-bottom: 10px;
}

.event-info p {
    font-size: 16px;
    color: #555;
}
