* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #203764;
    color: #D2C596;
    line-height: 1.6;
  
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #071229;
}

header .logo img {
    height: 50px;
}

header nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

header nav ul li a {
    color: #EDE7D3;
    text-decoration: none;
    font-weight: bold;
}

.hero {
    text-align: center;
    padding: 75px 20px;
    background-color: #203764;
    color: white;
}

.hero h1 {
    font-size: 70px;
    color: #FFFFFF;
    line-height: 1.2;

}

.hero p {
    font-size: 25px;
    text-align: center;
    margin: 20px 0;
    color: #D2C596;
    padding: 0px 20px;
}

.hero .cta {
    padding: 10px 20px;
    background-color: #D2C596;
    color: #203764;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}

/* Estilos para la sección de contacto */
.contacto {
    display: flex;
    justify-content: space-between;
    padding: 15px 20px;
    background-color: #203764; /* Fondo principal */
    color: #D2C596; /* Texto principal */
}

.column {
    flex: 1;
    text-align: center;
    margin: 0 20px;
}

.column h2 {
    color: #D2C596;
    margin-bottom: 20px;
    font-size: 22px;
}

.column p {
    font-size: 20px;
    line-height: 1.6;
    color: #D2C596; /* Color de apoyo */
}

.geo-2 iframe {
    width: 100%;
    height: 250px;
    border-radius: 10px;
    border: 0;
}

/* Estilos responsive para pantallas más pequeñas */
@media (max-width: 768px) {
    .contacto {
        flex-direction: column;
        align-items: center;
    }

    .column {
        margin-bottom: 20px;
        width: 100%;
    }

    .geo-2 iframe {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .column p {
        font-size: 1rem;
    }

    .geo-2 iframe {
        height: 200px;
    }
}


footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 50px 20px;
    background-color: #071229;
    color: #EDE7D3;

}

footer-logo {
    text-align: center; /* Centra el logo */
    padding: 20px; /* Espaciado alrededor del logo */
}

.footer-logo img {
    max-width: 150px; /* Ajusta el ancho máximo del logo */
    height: 50px;
    display: block;
    margin: 0 auto; /* Centra la imagen horizontalmente */
}

footer .footer-column {
    flex: 1;
    padding: 20px;
}

footer h3 {
    margin-bottom: 15px;
}

footer ul {
    list-style: none;
}

footer ul li, footer a {
    color: #D2C596;
    text-decoration: none;
}

footer a {
    display: block;
    margin-top: 10px;
}

/* Estilos Responsivos */
@media (max-width: 768px) {
    header {
        flex-direction: column;
    }

    .dos-columnas {
        flex-direction: column;
        text-align: center;
    }

    .clientes .imagenes-clientes img {
        width: 150px; /* Reduce el tamaño en pantallas más pequeñas */
        height: 150px;
    }

    footer {
        flex-direction: column;
        text-align: center;
    }
}
