.navigation-wrapper {
    font-family: 'Lato', sans-serif;
    display: flex;
    justify-content: space-between; 
    align-items: center;
    padding: 20px;
    background-color: #09386f;
    color: #cbcbcb;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); 
}

.left-column {
    flex: 1;
    text-align: center;
}

.left-column h1 {
    font-size: 34px;
    font-weight: bold;
    margin: 0;
}

.center-column {
    flex: 2;
    text-align: center;
}
.banner-image img {
    max-width: 100px;
    height: auto;
}

.right-column {
    flex: 1;
    text-align: center;
}

.navigation-wrapper > .right-column > #address-wrapper a {
    color: darkgray;
    text-decoration: none;
    font-size: 0.9em;
    transition: 0.5s;
}
.navigation-wrapper > .right-column > #address-wrapper a:hover {
    color: #E6D847
}
.navigation-wrapper > .right-column > .contact-icon {
    font-size: 2em;
}
.navigation-wrapper > .right-column > .contact-icon a {
 color: #cbcbcb;
 transition: 0.5s;
}
.navigation-wrapper > .right-column > .contact-icon a:hover {
    color: #E6D847; 
   }
#address-wrapper a {
    text-decoration: none;
    font-size: 14px;
    color: #cbcbcb;
    line-height: 1.5;
}

.contact-icon {
    margin-top: 10px;
}

.contact-icon a {
    font-size: 20px;
    color: #007bff;
    text-decoration: none;
}

.contact-icon a:hover {
    color: #0056b3;
}

.button-column {
    display: flex;
    justify-content: center; 
    margin-top: -4px;
    background-color: #09386f;
    padding-bottom: 4mm;
}

.links-wrapper {
    display: flex;
    justify-content: space-between; /* Cambiado para distribuir el espacio */
    margin-top: 10px;
    width: 50%; /* Para que ocupe todo el ancho disponible */
    max-width: 1200px; /* Ancho máximo para limitar la expansión en pantallas grandes */
}

.nav-link {
    margin: 0 30px; /* Aumentado el margen lateral para más separación */
}


.nav-link a {
    text-decoration: none;
    font-size: 16px;
    color: #cbcbcb;
    display: inline-block;
    transition: color 0.3s ease, transform 0.3s ease;
}

.nav-link a:hover {
    color: #E6D847;
    transform: scale(1.1);
}


.links-wrapper2 {
    display: flex;
    justify-content: center;
    margin: 20px 0;
    position: relative;
    z-index: 1000;
}

.dropbtn {
    background-color: #09386f;
    color: white;
    padding: 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    z-index: 1001;
}

.dropdown {
    position: relative;
    display: inline-block;
    text-align: center; 
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    border-radius: 5px;
    text-align: left; 
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-family: 'Lato', serif;
    transition: background-color 0.3s ease;
}

.dropdown-content a:hover {
    background-color: #ddd;
}


.dropdown:hover .dropdown-content {
    display: block;
}
