.sticky-parent-section {
    position: relative;
}

@media (min-width: 1080px) {
    .scroll-content-wrapper {
        padding-right: 2rem;
    }
}
.content-block {
    min-height: 80vh;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    box-sizing: border-box;
    background-color: #f9f9f9;
    margin-top: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.sticky-visual-container {
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: sticky;
    top: 70px;
    overflow: hidden;
    margin: 0;
}

.visual-mobile {
    display: none !important;
}

.visual-item {
    position: absolute;
    width: 90%;
    height: auto;
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    opacity: 0;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

@media (max-width: 1181px) {
    .sticky-parent-section .row {
        flex-direction: column;
    }
    .sticky-visual-wrapper {
        display: none;
    }
    .content-block {
        min-height: 200px;
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
    .visual-item {
        width: 100%;
        padding: 1rem;
    }
    .visual-mobile {
        display: flex !important;
    }
    .d-xl-none{
        display: none !important;
    }
}