.section-arrow {
                display: inline-flex;
                align-items: center;
                justify-content: center;
                position: relative;
                font-size: clamp(12px, 2vw, 15px);
                font-weight: 700;
                letter-spacing: 1.5px;
                text-transform: uppercase;
                color: #fff;
                height: clamp(36px, 6vw, 44px);
                padding: 0 clamp(20px, 5vw, 50px);
                background: linear-gradient(135deg, #031551, #054392);
                border-radius: 6px;
                backdrop-filter: blur(6px);
                box-shadow: 0 6px 0 rgb(3 21 81), 0 12px 20px rgba(0, 0, 0, 0.25);
                transition: all 0.35s ease;
                overflow: visible;
                margin-bottom: 20px
            }

            .section-arrow::after {
                content: "";
                position: absolute;
                right: calc(clamp(20px, 5vw, 50px) * -1);
                top: 0;
                width: 0;
                height: 0;
                border-top: calc(clamp(36px, 6vw, 44px) / 2) solid transparent;
                border-bottom: calc(clamp(36px, 6vw, 44px) / 2) solid transparent;
                border-left: clamp(25px, 6vw, 55px) solid #054392
            }

            .section-arrow::before {
                content: "";
                position: absolute;
                bottom: -8px;
                left: 50%;
                transform: translateX(-50%);
                width: 60%;
                height: 3px;
                background: linear-gradient(to right, transparent, #000, transparent);
                filter: blur(2px)
            }

            .section-arrow span {
                position: relative;
                z-index: 2
            }

            .section-arrow span::after {
                content: "";
                position: absolute;
                top: 0;
                left: -20%;
                width: 50%;
                height: 100%;
                background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.5), transparent);
                transform: skewX(-25deg)
            }

            .section-arrow:hover {
                transform: translateY(3px) scale(1.04);
                box-shadow: 0 3px 0 rgb(5 67 146), 0 8px 18px rgba(0, 0, 0, 0.3)
            }

            .section-arrow:hover span::after {
                animation: shine 0.8s forwards
            }

            @keyframes shine {
                100% {
                    left: 125%
                }
            }
            .title {
                position: relative;
                font-size: 40px;
                font-weight: 800;
                text-align: center;
                color: #1e3a8a;
                margin-bottom: 30px
            }

            .title::after {
                content: "";
                position: absolute;
                left: 50%;
                bottom: -15px;
                width: 180px;
                height: 4px;
                background: linear-gradient(90deg, #60a5fa, #1e3a8a);
                transform: translateX(-50%);
                border-radius: 10px;
                animation: linePulse 2s infinite
            }

            .title span {
                display: inline-block;
                opacity: 1;
                transform: translateY(0);
                background: linear-gradient(90deg, #1e3a8a, #2563eb);
                background-clip: text;
                -webkit-background-clip: text;
                color: #1e3a8a
            }

            .title span {
                animation: fadeUp 1s ease forwards
            }

            @keyframes fadeUp {
                from {
                    opacity: 0;
                    transform: translateY(20px)
                }

                to {
                    opacity: 1;
                    transform: translateY(0)
                }
            }

            @keyframes linePulse {

                0%,
                100% {
                    transform: translateX(-50%) scaleX(1)
                }

                50% {
                    transform: translateX(-50%) scaleX(0.7)
                }
            }

            @media(max-width:768px) {
                .title {
                    font-size: 30px
                }
            }


            /* faq */
             .faq-item {
                position: relative;
                background: #4338a3;
                border-radius: 12px;
                padding: 11px 20px 20px 75px;
                margin-bottom: 25px;
                color: white
            }

            .faq-number {
                position: absolute;
                left: 20px;
                top: -12px;
                width: 45px;
                height: 55px;
                background: #ffd54f;
                color: black;
                font-weight: bold;
                display: flex;
                align-items: center;
                justify-content: center;
                border-radius: 6px;
                font-size: 20px;
                padding-top: 10px
            }

            .faq-question {
                font-weight: bold;
                font-size: 22px;
                color: #ffd54f;
                margin-bottom: 10px;
                line-height: 1.4
            }

            .faq-answer {
                font-size: 17px;
                color: #ffffff;
                line-height: 1.6
            }