 body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    color: #000;
}

.full-width-image {
    width: 100vw;
    object-fit: cover;
    display: block;
}

.container {
    max-width: 999px; /* margenes del texto */
    margin: 0 auto;
    padding: 40px 20px; /* opcional para separación top-bottom */
    box-sizing: border-box;
}

h2.section-title {
    color: #000;
    text-align: center;
    font-size: 38.312px;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 20px;
}

p.section-text {
    color: #000;
    text-align: justify;
    font-size: 23.361px;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 40px;
}

.side-by-side {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 60px;
}

.text-block {
    flex: 1;
    max-width: 50%;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container img {
    width: 100%;
    height: auto;
    max-width: 829.798px;
    max-height: 595.239px;
    object-fit: contain;
    aspect-ratio: 329/236;
}

@media (max-width: 1200px) {
    .side-by-side {
        flex-direction: column;
        align-items: center;
    }
    .side-by-side img {
        width: 100%;
        height: auto;
    }
}
