/* Importación de la fuente personalizada Storia Sans Bold */
@font-face {
    font-family: 'Storia Sans';
    src: url('fonts/StoriaSans-Bold.woff2') format('woff2'),
        url('fonts/StoriaSans-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}

body {
    background-color: #1A1E14;
    /* Fondo verde */
    color: #ffffff;
    /* Texto en blanco */
    font-family: 'Questrial', sans-serif;
    margin: 0;
    padding: 0;
}

.contact-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

header {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
}

.header-image {
    width: 100%;
    height: auto;
    max-width: 1280px;
    /* Mantiene el tamaño original */
    aspect-ratio: 16 / 9;
    /* Mantiene la relación de aspecto 16:9 */
    object-fit: cover;
    /* Cubre el contenedor sin distorsión */
    margin-bottom: 20px;
}

.contact-section {
    max-width: 600px;
    padding: 40px;
    background-color: #41433C;
    /* Mantiene el fondo verde */
    text-align: center;
    border: 2px solid #ffffff;
    /* Borde blanco para destacar */
    border-radius: 10px;
    /* Esquinas redondeadas */
}

h1 {
    color: #ffffff;
    font-family: 'Storia Sans', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
}

p {
    margin-bottom: 15px;
    font-weight: bold;
}

.contact-info p {
    font-weight: bold;
}

a {
    color: #ffffff;
    text-decoration: underline;
}

a:hover {
    color: #a8c686;
}

/* Responsividad */
@media (max-width: 768px) {
    .contact-section {
        padding: 20px;
    }
}