.ext-qsAns-raptor{
            margin-top: 20px;
        }
        .ext-qsnaive-raptor{
            margin-top: 38px;
        }
        .ext-borderqs-ans {
            padding: 20px !important;
            border-radius: 10px;
            border: 1px solid lightgrey;
        }

        .rpostRed-R {
            color: #c4272f;

        }

        .ext-sticky-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .faq-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        h2.title {
            text-align: center;
            font-size: 2.8rem;
            color: #2d3436;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .faq-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 30px;
        }

        .sticky-note {
            background: #fff;
            padding: 32px 28px;
            border-radius: 16px;
            box-shadow:
                8px 8px 0px lightgrey,
                0 10px 30px rgba(0, 0, 0, 0.1);
            /* transform: rotate(-2deg); */
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            border: 2px solid #333;
        }

        .sticky-note:nth-child(even) {
            /* transform: rotate(2deg); */
            box-shadow:
                8px 8px 0px lightgrey,
                0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .sticky-note:nth-child(3n) {
            box-shadow:
                8px 8px 0px lightgrey,
                0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .sticky-note:nth-child(5n) {
            box-shadow:
                8px 8px 0px lightgrey,
                0 10px 30px rgba(0, 0, 0, 0.1);
        }


        .sticky-note::before {
            content: "";
            position: absolute;
            top: 12px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 12px;
            background: rgba(0, 0, 0, 0.1);
            border-radius: 50%;
            filter: blur(8px);
        }

        .question {
            font-size: 1.35rem;
            font-weight: 600;
            color: #2d3436;
            margin-bottom: 16px;
            position: relative;
            z-index: 2;
        }

        .answer {

            line-height: 1.7;
            color: #444;
            position: relative;
            z-index: 2;
        }

        .tape {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 28px;
            background: lightgrey;
            border-radius: 6px;
            backdrop-filter: blur(4px);
        }

        @media (max-width: 768px) {
            .faq-grid {
                grid-template-columns: 1fr;
            }

            .sticky-note,
            .sticky-note:nth-child(even) {
                transform: rotate(0deg);
            }

            h2.title {
                font-size: 2.3rem;
            }
        }

        .unique_box_content img:hover {
            -webkit-transform: none;
            transform: none;
        }

        .raptorAI-banner {
            width: 100%;
            height: 98vh;
            background-position: center;
            display: flex;
            align-items: center;
        }

        @media screen and (max-width:1024px) and (min-width:768px) {
            .raptorAI-banner {
                height: auto;
                /* background-position: right; */
            }

            .ext-tablet-font {
                font-size: 41px !important;
            }
        }