.scroll-section {
    height: 75vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 4rem;
    background-color: #f5eefc;
    color: #2c2c2c;
    gap: 2rem;
}

.scroll-section .text-content {
    flex: 1;
    padding-right: 2rem;
}

.scroll-section .text-content h1 {
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #4b2e83;
}

.scroll-section .text-content p {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #5c5c5c;
    margin: 0;
    text-align: justify;
}

.scroll-section .image-content {
    flex: 1;
    text-align: right;
}

.scroll-section .image-content img {
    max-width: 100%;
    max-height: 60vh;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    transition: transform 0.5s ease;
}

.scroll-section .image-content img:hover {
    transform: scale(1.03);
}

/* Responsive para pantallas pequeñas */
@media (max-width: 768px) {
    .scroll-section {
        flex-direction: column;
        text-align: center;
        height: auto;
        padding: 2rem;
    }

    .scroll-section .text-content {
        padding: 0;
    }

    .scroll-section .text-content h1 {
        font-size: 2.5rem;
    }

    .scroll-section .text-content p {
        font-size: 1.1rem;
    }

    .scroll-section .image-content {
        text-align: center;
    }

    .scroll-section .image-content img {
        max-height: 40vh;
    }
}
