.magic-section-mobile {
    display: none;
}

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

    .magic-section-mobile {
        display: block;
        padding: 40px 20px;
        background-color: #fff;
        text-align: center;
        font-family: 'Poppins', sans-serif;
    }

    .magic-mobile-main-title {
        font-size: 26px;
        font-weight: 800;
        margin: 0 0 15px 0;
        color: #000;
        line-height: 1.2;
    }

    .magic-mobile-subtitle {
        font-size: 16px;
        color: #333;
        margin: 0 0 30px 0;
        line-height: 1.4;
    }

    .magic-mobile-slider {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        gap: 0;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        margin-bottom: 20px;
    }

    .magic-mobile-slider::-webkit-scrollbar {
        display: none;
    }

    .magic-mobile-card {
        flex: 0 0 100%;
        width: 100%;
        scroll-snap-align: center;
        padding: 0 10px;
        box-sizing: border-box;
    }

    .magic-mobile-box {
        background-color: #f2f9ff;
        padding: 20px;
        display: flex;
        flex-direction: column;
        height: 100%;
        box-sizing: border-box;
    }

    .magic-mobile-box img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
        margin-bottom: 15px;
    }

    .magic-mobile-content {
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .magic-mobile-card-title {
        color: #e93892;
        font-size: 18px;
        font-weight: 700;
        margin: 0 0 10px 0;
        line-height: 1.3;
    }

    .magic-mobile-instruction {
        font-weight: 700;
        font-style: italic;
        color: #000;
        margin: 0 0 10px 0;
        font-size: 15px;
    }

    .magic-mobile-desc {
        font-size: 15px;
        line-height: 1.4;
        color: #333;
        margin: 0;
    }

    .magic-mobile-dots {
        display: flex;
        justify-content: center;
        gap: 10px;
    }

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

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