/* Hero Section */
.hero {
    background-color: #003366;
    color: white;
    padding: 40px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2rem;
}

/* Events Section */
.events, .past-events {
    padding: 30px 20px;
    text-align: center;
}

h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.event-list {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.event-card {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    margin: 10px;
    width: 250px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.event-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.event-card p {
    font-size: 1rem;
    margin-bottom: 10px;
}

.event-card a {
    color: #003366;
    text-decoration: none;
}

/* Calendar Section */
.calendar-container {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

iframe {
    border: none;
}



.footer {
    background-color: #003366;
    color: white;
    padding: 20px;
    text-align: center;
	position: relative;
}
.footer p {
    margin-top: 20px;
}

.whatsapp-icon-rules {
    position: absolute;
    left: 20px;
    bottom: 20px;
    font-size: 30px;
}

.whatsapp-icon-rules a {
    color: white;
    text-decoration: none;
}

.whatsapp-icon-rules a:hover {
    color: #25d366; /* WhatsApp green color */
}