.results-section-mobile {
    display: none;
    padding: 16px 16px 0;
    background-color: #fff;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

@media (max-width: 768px) {
    .results-section {
        display: none;
    }

    .results-section-mobile {
        display: block;
    }

    .results-slider-wrapper {
        position: relative;
        margin-bottom: 20px;
        padding: 0 10px;
    }

    .results-track {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        scrollbar-width: none;
    }

    .results-track::-webkit-scrollbar {
        display: none;
    }

    .result-slide {
        min-width: 100%;
        scroll-snap-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 0 20px;
        box-sizing: border-box;
    }

    .results-arrow {
        position: absolute;
        top: 40%;
        transform: translateY(-50%);
        background: transparent;
        border: none;
        color: #ccc;
        cursor: pointer;
        z-index: 5;
        padding: 0;
    }

    .prev-res { left: -10px; }
    .next-res { right: -10px; }

    .results-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-bottom: 20px;
    }

    .dot {
        width: 10px;
        height: 10px;
        background-color: #ccc;
        border-radius: 50%;
        cursor: pointer;
        transition: background-color 0.3s;
    }

    .dot.active {
        background-color: #333;
    }

    .chart-wrapper {
        width: 120px;
        height: 120px;
    }
}