.info-system-section {
    padding: 20px;
    background: #f8f8f8; /* Fondo claro */
}

.info-system-section .row {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.info-system-section .column {
    flex: 1;
    padding: 10px;
}

.info-system-section .text-column-info {
    flex: 1 1 50%; /* Columna de texto */
}

.info-system-section .image-column {
    flex: 1 1 50%; /* Columna de imagen */
    text-align: center;
}

.info-system-section .text-module{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.info-system-section .text-module h3 {
    margin-top: 0;
    font-size: 24px;
    color: #333;
}

.info-system-section .text-module p {
    font-size: 16px;
    color: #555;
}

.info-system-section .text-module ul {
    list-style-type: disc;
    color: #555;
    margin-left: 20%;
}

.info-system-section .text-module li {
    margin-bottom: 8px;
}

.info-system-section .image-wrap img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Media query para pantallas pequeñas */
@media (max-width: 768px) {
    .info-system-section .row {
        flex-direction: column;
    }

    .info-system-section .image-column {
        order: -1; /* Mover la imagen arriba en pantallas pequeñas */
    }

    .info-system-section .text-module h3 {
        font-size: 20px;
    }

    .info-system-section .text-module p, .text-module li {
        font-size: 14px;
    }
}
