/* Sección Acerca de Nosotros */
.about-section {
    background-color: #ECEFF1; /* Gris muy claro para contraste */
    padding: 100px 0;
}

.about-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap; /* Para responsive */
}

.about-image {
    flex: 1;
    min-width: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-text {
    flex: 1;
    min-width: 400px;
}

.about-text .section-title {
    text-align: left;
    margin-bottom: 25px;
}

.about-text p {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 25px;
}

.about-text ul {
    list-style: none;
    margin-bottom: 30px;
}

.about-text ul li {
    font-size: 1.05em;
    color: #444;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.about-text ul li .bullet-icon {
    color: #4CAF50; /* Verde para el check */
    font-size: 1.3em;
    margin-right: 10px;
}

/* Responsividad */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column-reverse; /* Imagen abajo en móvil */
        text-align: center;
    }
    .about-text .section-title {
        text-align: center;
    }
    .about-text ul {
        display: inline-block; /* Para centrar la lista */
        text-align: left;
    }
    .about-text {
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 80px 0;
    }
    .about-image {
        min-width: 100%;
    }
    .about-text {
        min-width: 100%;
    }
}