.events-section {
    padding: 60px 20px;
    background-color: #f4f4f4;
    text-align: center;
}

.events-section h2 {
    font-size: 2.5rem;
    color: #26355D;
    margin-bottom: 20px;
}

.events-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-top: 40px;
}

.event-item {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 10px;
    padding: 20px;
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    text-align: left;
}

.event-item h3 {
    font-size: 1.5rem;
    color: #26355D;
    margin-top: 15px;
}

.event-item p {
    font-size: 1rem;
    color: #555;
}

.event-item .event-date {
    font-weight: bold;
    color: #26355D;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .events-container {
        flex-direction: column;
        align-items: center;
    }

    .event-item {
        max-width: 90%;
    }
}