/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #97D700;;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Navbar */
.navbar {
    background-color: #1700A5; /* Azul principal */
    padding: 1em 2em;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar h1 {
    font-size: 1.5em;
    font-weight: bold;
}

.navbar ul {
    list-style-type: none;
    display: flex;
    gap: 1em;
}

.navbar a {
    color: #fff;
    text-decoration: none;
    padding: 0.5em 1em;
    border-radius: 5px;
    transition: background 0.3s;
}

.navbar a:hover {
    background-color: #97D700; /* Verde para hover */
}

/* Main Content */
main {
    flex: 1;
    display: flex;
    justify-content: space-around;
    align-items: stretch;
    padding: 2em 1em;
    gap: 1em;
}

.section {
    flex: 1;
    background-color: #fff;
    padding: 2em;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.section-content {
    flex: 1;
    padding-right: 2em;
}

.section-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.section-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

h2 {
    color: #1700A5;
    margin-bottom: 0.5em;
}

p {
    margin-bottom: 1em;
    line-height: 1.6;
}

h3 {
    color: #97D700;
    margin-bottom: 0.5em;
    font-weight: bold;
}

/* Contenedor de imagen principal */
.hero-image {
    width: 100%;
    height: 300px;
    background-color: #f8f8f8; /* Color de fondo de reserva */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2em;
    font-weight: bold;
    text-align: center;
}

/* Footer */
footer {
    background-color: #1700A5;
    color: #fff;
    text-align: center;
    padding: 1em 0;
    font-size: 0.9em;
}