/* Announcements Section */
.announcements-section {
    max-width: 1000px;
    margin: 50px auto;
    padding: 0 20px;
    text-align: center;
}

.announcements-section h2 {
    font-size: 2rem;
    color: #036308;
    margin-bottom: 20px;
    text-align: center;
}

.announcement-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: left;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    border-left: 5px solid #036308;
}

.announcement-card h3 {
    font-size: 1.4rem;
    color: #036308;
}

.announcement-card p {
    font-size: 1.1rem;
    color: #333;
}

.announcement-date {
    display: block;
    font-size: 0.9rem;
    color: #777;
    margin-top: 10px;
}

/* Schedule Section */
.schedule-section {
    max-width: 1000px;
    margin: 50px auto;
    padding: 0 20px;
    text-align: center;
}

.schedule-section h2 {
    font-size: 2rem;
    color: #036308;
    margin-bottom: 15px;
}

.schedule-section p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.calendar-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .announcements-section, .schedule-section {
        padding: 0 10px;
    }

    .announcement-card {
        text-align: center;
    }

    .calendar-container iframe {
        height: 400px; /* Adjust height for smaller screens */
    }
}
