/* Hero Section */
.hero-section {
    background-image: url('/assets/images/finisaje/hero-finisaje.png');
}

/* Info Text Section */
.info-text {
    background-color: #23221E;
    padding: 4rem 2rem;
    text-align: center;
}

.info-text p {
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 1000px;
    margin: 0 auto;
}

/* Info Images Section */
.info-images {
    padding: 4rem 2rem;
}

.info-images-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
}

.info-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .info-images-container {
        flex-direction: column;
    }
    
    .info-image {
        max-width: 100%;
    }
}
