/* Estilos generales */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

header {
    background-color: #003366;
    color: white;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    margin-right: 10px;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    background-color: #003366;
    padding: 10px;
    top: 100%;
    left: 0;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.hero {
    background-color: #00509e;
    color: white;
    padding: 50px 20px;
    text-align: center;
}

footer {
    background-color: #003366;
    color: white;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    bottom: 0;
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: flex-start;
    }

    nav ul {
        flex-direction: column;
    }

    nav ul li {
        margin: 10px 0;
    }

    .dropdown-menu {
        position: static;
    }
}

/* Estilos para la página de Contacto */
.contacto {
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.contacto h2 {
    color: #003366;
    text-align: center;
}

.contacto p {
    text-align: center;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.form-group textarea {
    resize: vertical;
}

button[type="submit"] {
    background-color: #00509e;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button[type="submit"]:hover {
    background-color: #003366;
}

.informacion-contacto {
    margin-top: 30px;
}

.informacion-contacto h3 {
    color: #003366;
}

.redes-sociales ul {
    list-style: none;
    padding: 40px;
}

.redes-sociales ul li {
    display: inline;
    margin-right: 10px;
}

.redes-sociales ul li a {
    color: #00509e;
    text-decoration: none;
}

.redes-sociales ul li a:hover {
    text-decoration: underline;
}

.imagen {
    width: 600px; 
    height: 335px;
    }

.contenedor {
    text-align: center;
    justify-content: center;
    align-items: center;
   
}

.content {
    background-color: #00509e;
    color: white;
    padding: 2px 2px;
    text-align: center;
}

.nosotros {
    font-size: large;
    background-color: #00509e;
    color: white;
    padding: 10px 150px;
    text-align: center;
    margin-left: 5%;
    margin-right: 5%;

}


.partner {
    height: 50px;
    margin: 30px;
    }
}