/* Container */
.events-page-container {
    max-width: 1000px;
    margin: 60px auto;
    padding: 40px 20px 20px; /* increased top padding for more space from top */
    font-family: 'Arial', sans-serif;
}

/* Page Title */
.events-page-title {
    text-align: center;
    color: #08386c;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 40px;
}

/* Grid Layout */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

/* Event Card */
.event-card {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

/* Event Title */
.event-title {
    color: #08386c;
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
}

/* Event Description */
.event-description {
    font-size: 15px;
    color: #333;
    line-height: 1.6;
}

/* PDF Link */
.pdf-link {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 16px;
    background-color: #08386c;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

.pdf-link:hover {
    background-color: #062b52;
}

/* No Events Message */
.no-events {
    text-align: center;
    color: #555;
    font-size: 16px;
    margin-top: 20px;
}
