/* Estilo general */
body {
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-size: 18px;
    color: #333;
    background-color: #f5f5f7;
    text-align: center;
    margin: 0;
    padding: 0;
}

/* Encabezados */
h1 {
    font-size: 36px;
    font-weight: bold;
}

h2 {
    font-size: 28px;
}

/* Sección de contacto */
#contacto {
    max-width: 600px;
    margin: 40px auto;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Lista de correos en una sola columna */
#contacto ul {
    list-style: none;
    padding: 0;
    text-align: center;
    max-width: 500px;
    margin: auto;
}

#contacto ul li {
    padding: 8px 0;
    font-size: 20px;
    font-weight: 500;
}

/* Enlaces de correos */
#contacto ul li a {
    text-decoration: none;
    color: #0071e3;
    font-weight: bold;
}

#contacto ul li a:hover {
    text-decoration: underline;
}

/* Formularios */
label {
    font-size: 18px;
    font-weight: bold;
}

input, textarea {
    width: 100%;
    padding: 12px;
    margin-top: 8px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 16px;
}

/* Botón de enviar */
button {
    background-color: #0071e3;
    color: white;
    font-size: 20px;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background-color: #005bb5;
}

/* Imágenes */
img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: auto;
    border-radius: 10px;
}

/* Centrar reCAPTCHA */
.g-recaptcha {
    display: flex;
    justify-content: center;
    margin: 15px auto;
}

@media (max-width: 768px) {
    img {
        max-width: 90%;
    }
}

@media (min-width: 1024px) {
    img {
        max-width: 70%;
    }
}
