body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

/* Estilo General de la Sección */
.content-section {
    padding: 20px;
    background-color: #f9f9f9;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px auto;
    width: 100%;
    max-width: 1200px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Contenedor de Contenido */
.content-container {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 20px;
    width: 100%;
}

/* Columna de Imágenes */
.images-column {
    flex: 1 1 35%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.images-column img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.15);
}

/* Columna de Texto */
.text-column {
    flex: 1 1 65%;
    color: #333;
    padding: 10px;
}

.text-column h2 {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: #ec360d;
    font-weight: bold;
    text-align: left;
}

.text-column p {
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #555;
}

.text-column h3 {
    font-size: 1.4em;
    margin-bottom: 10px;
    color: #444;
    font-weight: bold;
}

.values-list {
    list-style-type: disc;
    padding-left: 15px;
    color: #666;
    font-size: 0.95em;
}

.values-list li {
    margin-bottom: 8px;
}

/* Animaciones */
.animate-fade {
    animation: fadeIn 0.8s ease-in-out;
}

.animate-slide {
    animation: slideIn 0.8s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateX(-15px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Diseño Responsivo */
@media (max-width: 768px) {
    .content-container {
        flex-wrap: wrap;
        flex-direction: column;
        align-items: center;
    }

    .images-column,
    .text-column {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .text-column {
        padding: 0;
        text-align: center;
    }

    .text-column h2,
    .text-column h3 {
        text-align: center;
    }
}


/* contenido 2*/
.about-header {
    background-color: rgb(28, 109, 250);
    color: white;
    text-align: center;
    padding: 3rem 1rem;
    margin-bottom: 2rem;
}

.about-header h1 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
}

.about-title {
    font-size: 2.0rem;
    margin-bottom: 1rem;
}

.about-subtitle {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    text-align: center;
}

.about-icon {
    width: 90px;
    height: 80px;
    background: rgb(255, 255, 255);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
}

.about-card h3 {
    color: rgb(227, 81, 13);
    margin-bottom: 1rem;
}

.about-card p {
    color: #666;
    line-height: 1.6;
}


.about-values {
    background: #f5f5f5;
    padding: 2rem 2rem;
}

.values-container {
    max-width: 1200px;
    margin: 0 auto;
}

.values-title {
    text-align: center;
    color: rgb(227, 81, 13);
    font-size: 2rem;
    margin-bottom: 3rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
}

.value-item h4 {
    color: rgb(227, 81, 13);
    margin-bottom: 0.5rem;
}

/* Para la seccion de mision y vision */
.mission-vision-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.mission-vision-card:hover {
    transform: translateY(-5px);
}

.card-header {
    background: linear-gradient(135deg, #0b75de, #ec4d09);
    color: white;
    padding: 2rem 1rem;
    border-bottom: none;
}

.mission .card-header {
    background: linear-gradient(135deg, #088be3, #18d5ea);
}

.vision .card-header {
    background: linear-gradient(135deg, #077aed, #07a0e1);
}

.icon-container {
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.card-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-body {
    padding: 2rem;
    color: #495057;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .mission-vision-container {
        flex-direction: column;
    }

    .mission-vision-card {
        margin-bottom: 2rem;
    }
}