/* Reset de estilos */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Estilos generales */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f7fa;
    color: #333;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding: 20px;
}

/* Contenedor principal */
.container {
    max-width: 800px;
    margin: 20px auto;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Títulos */
h1 {
    text-align: center;
    color: #2C3E50;
    margin-bottom: 15px;
}

h2 {
    color: #2C3E50;
    margin-bottom: 10px;
    border-bottom: 2px solid #2C3E50;
    padding-bottom: 5px;
}

/* Párrafos */
p {
    margin-bottom: 15px;
    text-align: justify;
}

/* Listas */
ul {
    margin: 10px 0 15px 20px;
}

ul li {
    margin-bottom: 5px;
}

/* Enlace de contacto */
.contacto {
    font-weight: bold;
    color: #2C3E50;
    text-decoration: none;
}

.contacto:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    margin-top: 20px;
    text-align: center;
    padding: 10px;
    background-color: #273747;
    color: white;
    border-radius: 5px;
}
