body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
}

.empresa {
    background-color: #ffffff;
    padding: 50px 20px;
}

.empresa-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center; 
}

/* Contenedor de Imagen */
.empresa-img {
    display: flex; 
    align-items: center;
    justify-content: center;
}

.empresa-img img {
    width: 100%;
    height: auto; 
    object-fit: contain; 
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* Información*/
.empresa-info h2 {
    color: #143A6D;
    font-size: 2.2rem;
    margin-bottom: 30px;
    position: relative;
}

.empresa-info h2::after {
    content: "";
    width: 60px;
    height: 4px;
    background-color: #B8840F; 
    display: block;
    margin-top: 10px;
}

.empresa-bloque {
    margin-bottom: 25px;
}

.empresa-bloque h3 {
    color: #143A6D;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.empresa-bloque p {
    color: #333; 
    line-height: 1.6;
    font-size: 1.1rem;
    text-align: justify;
}

.empresa-bloque ul {
    list-style: none;
    padding: 0;
}

.empresa-bloque li {
    margin-bottom: 6px;
    color: #333;
}

/* Responsive */
@media (max-width: 768px) {
    .empresa-container {
        grid-template-columns: 1fr;
    }
    .empresa-info {
        order: 1;
        text-align: center;
        padding: 0 15px;
    }
    .empresa-img {
        order: 2;
        margin-top: 30px; 
        padding: 0 10px;
    }
    .empresa-img img {
        height: auto; 
        max-width: 100%;
    }
    .empresa-info h2::after {
        margin: 10px auto 0;
    }
}