/* styles/events.css */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f7f7f7;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#events-section.content-section {
    padding: 20px;
    background-color: #f9f9f9;
    border-top: 1px solid #ddd;
    margin: 20px auto;
    max-width: 800px;
    text-align: left;
    border-radius: 5px;
}

#events-section .page-title {
    text-align: center;
    color: #4CAF50;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
}

#events-section.content-section p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.event-list {
    margin-top: 20px;
}

.event {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.event-title {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}

.event-date, .event-location, .event-description {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    #events-section.content-section p, .event-date, .event-location, .event-description {
        font-size: 16px;
    }

    #events-section .page-title, .event-title {
        font-size: 28px;
    }
}
