 .practice-section {
            position: relative;
            padding: 60px 80px 80px;
            /* min-height: 100vh; */
            background: url(../img/levelup-bg.jpg) center / contain no-repeat;
            width: 100%;
            background-size: cover;
        }

        /* TITLE */
        .practice-title {
            text-align: center;
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 16px;
            font-family: cursive;
        }

        .practice-title span {
            color: #6c45ff;
        }

        /* MODE BAR */
        .mode-bar {
            margin: 20px auto;
            width: fit-content;
            padding: 18px 36px;
            border-radius: 14px;
            /* background: linear-gradient(90deg, #000, #6b6b6b); */
            color: #eb2222;
            font-size: 26px;
            font-weight: 700;
            background: #00cf6b;
        }

        .mode-bar span {
            color: #ff3b3b;
            color: #fff;
        }

        /* SUB TEXT */
        .mode-sub {
            width: fit-content;
            margin: 20px auto 50px;
            padding: 12px 28px;
            border-radius: 12px;
            background: #9d988c;
            font-size: 20px;
            color: #000;
            font-family: cursive;
            font-weight: 700;
        }

        /* GRID */
        .exam-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px 120px;
            max-width: 1100px;
            margin: 0 auto;
        }

        /* ITEM */
        .exam-item h3 {
            font-size: 24px;
            margin-bottom: 6px;
        }

        .exam-item p {
            font-size: 17px;
            margin: 0;
        }

        /* START BUTTON */
        .start-btn {
            margin-top: 10px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 20px;
            background: #3694DF;
            color: #000;
            border-radius: 30px;
            font-weight: 600;
            text-decoration: none;
        }

        /* RIGHT IMAGE */
        .illustration {
            position: absolute;
            right: 60px;
            top: 160px;
            width: 280px;
        }

        /* FOOT TEXT */
        .bottom-text {
            text-align: center;
            margin-top: 40px;
            font-size: 18px;
        }

        .bottom-text span {
            color: red;
            font-weight: 600;
        }

        /* MOBILE */
        @media(max-width:900px) {
            .practice-section {
                padding: 40px 20px;
            }

            .exam-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .illustration {
                position: static;
                display: block;
                margin: 40px auto 0;
            }
        }