.sci-results-section {
    padding: 60px 20px;
    background: #fff;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
}

.sci-results-section * {
    box-sizing: border-box;
}

.sci-container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.sci-text-col {
    flex: 1;
}

.sci-title {
    font-family: "Times New Roman", Times, serif;
    font-size: 36px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 30px;
    color: #000;
    line-height: 1.2;
}

.highlight-pink {
    color: #e27890;
}

.sci-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sci-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    font-family: sans-serif;
}

.heart-bullet {
    margin-right: 15px;
    font-size: 18px;
    line-height: 1.4;
    flex-shrink: 0;
}

.sci-list li strong {
    color: #000;
    font-weight: 700;
}

.sci-slider-col {
    flex: 1;
    display: flex;
    justify-content: center;
}

.ba-slider {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 4 / 3;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.ba-img-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ba-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    pointer-events: none;
}

.ba-labels {
    position: absolute;
    top: 15px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
    z-index: 5;
    pointer-events: none;
}

.ba-label {
    background: #e27890;
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

@media (max-width: 900px) {
    .sci-results-section {
        padding: 20px;
    }

    .sci-container {
        flex-direction: column;
        gap: 40px;
    }

    .sci-text-col,
    .sci-slider-col {
        width: 100%;
        flex: none;
    }

    .sci-title {
        font-size: 28px;
        text-align: center;
    }

    .ba-slider {
        margin: 0 auto;
    }
}