header {
    background-color: #4A4A4A;
    padding: 10px 0;
}

.first-section {
    background-color: rgba(2, 52, 102);
}

/* Asegúrate de que el estilo de los encabezados sea consistente */
.mi {
    margin-bottom: 15px;
    /* Espacio debajo del encabezado */
    color: #001d6d;
    font-size: 20px;
    font-weight: 600;
}


section {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    min-height: 300px;
    padding: 10px;
    box-sizing: border-box;
}

.text-image-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 800px;
    margin: 0 auto;
    gap: 20px;
    /* Añadido para separar texto e imagen */
}

.text-content {
    flex: 1;
    padding: 10px;
    color: white;
    text-align: justify;
}

.pp {
    flex: 1;
    padding: 10px;
    color: #1F3365;
    text-align: justify;
    font-weight: normal;
}

.image-content {
    flex: 1;
    display: flex;
    justify-content: center;
}

.image-content img {
    max-width: 120%;
    height: auto;
}

.blue {
    background-color: #ffffff;
}


.custom-shape-divider-top-1722872811 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-top-1722872811 svg {
    position: relative;
    display: block;
    width: calc(115% + 1.3px);
    height: 83px;
}

.custom-shape-divider-top-1722872811 .shape-fill {
    fill: #1F3365;
}

.icon-content {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    margin-top: auto;
}

.column {
    flex: 1;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.icon-row {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.icon {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

h1 {
    text-align: center;
    color: white;
    font-weight: bold;
    font-size: 42px;
}

.text-image-container1 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}

.text-content1 {
    text-align: justify;
    padding: 20px;
    font-size: 26px;
    color: black;
}

.text-content1 h1 {
    color: black;
}

.is {
    background: #f5f5f5;
}

.it {
    background: #ffffff;
}

.image-content img {
    max-width: 100%;
    height: auto;
}

.custom-shape-divider-top-1722877132 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-top-1722877132 svg {
    position: relative;
    display: block;
    width: calc(115% + 1.3px);
    height: 83px;
}

.custom-shape-divider-top-1722877132 .shape-fill {
    fill: #E5E5E5;
}

hr {
    border: 1px solid #e5e5e5;

}

/* Asegura que el contenedor de la información esté centrado y bien espaciado */
.info5 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;

}



.info-5 {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Centra horizontalmente el contenido */
    justify-content: center;
    /* Centra verticalmente el contenido */
    width: 320px;
    height: 250px;
    padding: 15px 25px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    /* Sombra más sutil */
    border-radius: 20px;
    background: #f9f9f9;
    /* Fondo blanco suave */
    color: #333333;
    /* Color de texto gris oscuro para una apariencia más moderna */
    transition: background 0.3s, box-shadow 0.3s, transform 0.3s;
    /* Animación suave para hover */
}

.info-5:hover {
    background: #ffffff;
    /* Fondo blanco puro en hover para un efecto de realce */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    /* Sombra más pronunciada en hover */
    transform: scale(1.05);
    text-decoration: none;
    /* Escala ligera en hover para un efecto de profundidad */
}



/* Media query para pantallas menores a 768px */
@media (max-width: 768px) {
    .info5 {
        flex-direction: column;
        /* Cambia la dirección del flex para mostrar tarjetas en una columna */
        align-items: center;
        /* Centra las tarjetas horizontalmente */
    }

    .info-5 {
        width: 100%;
        /* Asegura que cada tarjeta ocupe el ancho completo del contenedor */
        max-width: 320px;
        /* Opcional: asegura que la tarjeta no sea más ancha que el tamaño original */
    }
}