body {
    font-family: 'Poppins',  sans-serif;
    margin: 0;
    padding: 0;
    background-color: #b3ffbf;
    color: #2a2a2a;
}

/* Header */
header {
    background-color: #ffffff;
    color: #144700;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    border-bottom: 3px solid #1e8449;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

header img {
    height: 80px;
    margin-right: 2rem;
}

header .title-container {
    display: flex;
    align-items: center;
}

header h1 {
    margin: 0;
    font-size: 2rem;
    font-weight: 600;
}

header a {
    color: #144700;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    padding: 8px 15px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

header a:hover {
    background-color: #c0392b;
    color: #ffffff;
}
header {

    background-color: #ffffff;
    color: #144700;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    border-bottom: 3px solid #1e8449;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

header img {
    height: 80px;
    margin-right: 2rem;
}

header .title-container {
    display: flex;
    align-items: center;
}

header h1 {
    margin: 0;
    font-size: 2rem;
    font-weight: 600;
}

header a {
    color: #144700;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    padding: 8px 15px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

header a:hover {
    background-color: #c0392b;
    color: #ffffff;
}
/* Navigation Menu */
nav {
    background-color: #27ae60;
    padding: 5px;
    text-align: left;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

nav button {
    width: 10%;
    background-color: #ffffff;
    color: #2c3e50;
    border: none;
    padding: 1px 1px;
    font-size: 1rem;
    cursor: pointer;
    text-transform: uppercase;
    border-radius: 2px;
    margin: 5px;
    transition: background-color 0.3s, transform 0.2s;
}

nav button:hover {
    background-color: #e74c3c;
    color: #ffffff;
    transform: scale(1.1);
}

/* Información de sesión */
.session-info {
    text-align: right;
}

.session-info p {
    margin: 0;
    font-size: 14px;
}

.session-info a {
    color: white;
    font-weight: bold;
    text-decoration: none;
    margin-top: 5px;
    transition: color 0.3s;
}

.session-info a:hover {
    color: #d4ffd6;
}

/* Estilo para la sección de contacto */
main {
    background-color: #f2f9f1;
    padding: 30px;
}

.contact-info {
    background:#ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width:800px;
    margin: 20px auto;
}

.contact-info h2 {
    text-align: center;
    color: #28a745;
    font-size: 24px;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.contact-info h3 {
    font-size: 20px;
    color: #28a745;
    margin-top: 20px;
}
/* Estilo para el footer */
footer {
    background-color: #144700;
    color: white;
    text-align: center;
    padding: 10px;
    font-size: 14px;
}
