body {
    font-family: Arial, sans-serif;
    background-color: #f4f7f6;
    margin: 0;
    padding: 0;
}

header {
    background-color: #005a87;
    color: white;
    padding: 60px 20px;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 2.5em;
}

header p {
    font-size: 1.2em;
}

.section {
    padding: 20px;
}

.gallery {
    margin: 20px auto;
}

.gallery img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.calendar {
    margin: 20px auto;
}

.event {
    border-left: 4px solid #005a87;
    margin-bottom: 15px;
    padding: 10px 15px;
    background-color: #f9f9f9;
    border-radius: 0 5px 5px 0;
}

.event-date {
    font-weight: bold;
    color: #005a87;
}

footer {
    background-color: #003f5c;
    color: white;
    padding: 10px;
    text-align: center;
    position: relative;
    bottom: 0;
    width: 100%;
}

.modal-lg-gallery {
    max-width: 75%;
}

:root {
    --primary-color: #2e86de;
    --secondary-color: #ff9f43;
    --accent-color: #10ac84;
    --light-color: #f5f6fa;
    --dark-color: #2f3542;
}

body {
    font-family: 'Nunito', sans-serif;
    color: #333;
    background-color: var(--light-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

/* Header improvements */
header {
    background: linear-gradient(135deg, var(--primary-color), #574b90) !important;
    padding: 3rem 0 !important;
    border-bottom: 5px solid var(--secondary-color);
}

header h1 {
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

/* Section improvements */
section h2 {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 25px;
}

section h2:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    background-color: var(--secondary-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* Card improvements */
.card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

/* Calendar improvements */
.list-group-item {
    border-left: 5px solid var(--primary-color);
    margin-bottom: 10px;
    border-radius: 5px !important;
    transition: all 0.2s;
}

.list-group-item:hover {
    background-color: rgba(46, 134, 222, 0.05);
    transform: scale(1.01);
}

.list-group-item:nth-child(2) {
    border-left-color: var(--secondary-color);
}

.list-group-item:nth-child(3) {
    border-left-color: var(--accent-color);
}

.list-group-item:nth-child(4) {
    border-left-color: #574b90;
}

/* Map improvements */
#map iframe {
    width: 100%;
    height: 400px;
    border: 0;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Contact section */
#contact {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

#contact a {
    color: var(--primary-color);
    font-weight: bold;
    transition: color 0.2s;
}

#contact a:hover {
    color: var(--secondary-color);
    text-decoration: none;
}


footer {
    background: linear-gradient(135deg, var(--dark-color), #1e272e) !important;
    padding: 1.5rem 0 !important;
    position: relative;
}

footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color), var(--accent-color));
}