/* Estilos generales */

body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    color: #333;
}

header {
    background-color: #003366;
    color: #fff;
    padding: 1rem;
    text-align: center;
    font-size: 15px;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-container .logo1 {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin-right: 1rem;
}





section {
    padding: 20px;


}








.container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.image-container {
    width: 300px; /* Ancho de cada contenedor de imagen */
    margin: 20px;
    text-align: center;
    background-color: #fff;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.image-container img {
    width: 100%; /* Imagen ocupará todo el ancho del contenedor */
    border-radius: 8px;
}

.description {
    margin-top: 10px;
}

.description p {
    margin: 5px 0;
}

.description p strong {
    font-weight: bold;
}

.transfer-links {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.transfer-links a {
    margin: 0 10px;
}

.transfer-links img {
    width: 50px; /* Ancho de los logos  */
    border-radius: 30px;
}