body {
    font-family: Arial, sans-serif;
    margin: 0;
    background-color: rgb(2, 36, 158);
    display: flex;
    justify-content: center;
}

.container {
    max-width: 900px;
    width: 100%;
    padding: 20px;
}

h1 {
    text-align: center;
    color: white;
}

/* NAV MENU */
.nav {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    padding: 10px 0;
}

.nav a {
    margin: 0 10px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 5px;
}

.nav a:hover {
    background: rgba(255,255,255,0.15);
}

/* GALLERY */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
}

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

/* EVENTS TABLE */
table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
}

tr:not(:last-child) {
    border-bottom: 1px solid #ddd;
}

td {
    padding: 15px;
    vertical-align: middle;
}

.date {
    width: 30%;
    text-align: center;
    font-weight: bold;
    background: #f5f5f5;
}

.content {
    width: 70%;
}

.title {
    font-weight: bold;
    margin-bottom: 5px;
}

.desc {
    font-size: 14px;
    color: #555;
}

/* CONTACT FORM */
.form-box {
    background: white;
    padding: 20px;
    border-radius: 10px;
}

input, textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
}

textarea {
    resize: vertical;
    min-height: 120px;
}

button {
    background: rgb(2, 36, 158);
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background: rgb(27, 73, 241);
}

.success {
    color: green;
    margin-bottom: 15px;
    text-align: center;
}

/* WHATSAPP BUTTON */
.whatsapp {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 15px;
    background: #25D366;
    color: white;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
}