/* Reset básico */
body, h1, h2, p, ul, li, form, label {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
 }

 body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #778DA9;
    color: #0D1B2A;
    padding: 20px;
 }

 /* Estilos del Encabezado */
 header {
    text-align: center;
    padding: 20px;
    background-color: #0D1B2A;
    color: #E0E1DD;
 }

 header h1 {
    margin-bottom: 10px;
    font-size: 2.5em;
 }

 header p {
    font-size: 1.2em;
 }
 /* Estilos de Secciones */
 section {
    margin: 20px 0;
 }

 h2 {
    border-bottom: 2px solid #0D1B2A;
    margin-bottom: 10px;
    font-size: 1.5em;
 }

 ul {
    list-style-type: none;
    padding: 0;
 }

 ul li {
    padding: 5px 0;
 }

 /* Estilos del Formulario */
 form {
    display: flex;
    flex-direction: column;
 }

 form label {
    margin-bottom: 5px;
    font-weight: bold;
 }

 form input, form textarea {
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #0D1B2A;
    border-radius: 5px;
 }

 form button {
    padding: 10px;
    background-color: #0D1B2A;
    color: #E0E1DD;
    border: none;
    border-radius: 5px;
    cursor: pointer;
 }

 form button:hover {
    background-color: #f8f5f5;
 }

 /* Estilos del Pie de Página */
 footer {
    text-align: center;
    padding: 10px;
    background-color: #0D1B2A;
    color: #E0E1DD;
    margin-top: 20px;
 }

 /* Diseño Responsivo */
 @media (max-width: 600px) {
    header h1 {
        font-size: 2em;
    }
    header p {
        font-size: 1em;
    }
 }