    * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }


    body.FAQ-body {
        font-family: 'Montserrat', 'Arial', sans-serif;
        line-height: 1.5;
        color: #333;
        background: #fff;
    }

    /* book appointment -----------------------------------*/
    .book-appointment {
        padding: 15px 30px;
        border: 2px solid rgba(255, 255, 255, 0.5);
        border-radius: 30px;
        background: rgba(10, 9, 9, 0.392);
        color: white;
        font-size: 18px;
        cursor: pointer;
        display: none;
        align-items: center;
        gap: 10px;
        transition: 0.3s ease;
        backdrop-filter: blur(5px);

        /* Fixed Position Add kiya */
        position: fixed;
        bottom: 30px;
        right: 35px;
        z-index: 1100;
        /* Menu button se upar dikhe */
    }

    .book-appointment:hover {
        background: rgba(12, 0, 0, 0.879);
        border-color: white;
        transform: scale(1.05);
    }

    @media (max-width: 800px) {
        .book-appointment {
            display: flex;
            font-size: 12px;
            padding: 10px 15px;
            right: 7px;
        }
    }

    /*---------------------------------------------------------*/

    .FAQ-container {
        display: flex;
        max-width: 1100px;
        margin: 0 auto;
        gap: 40px;
        margin-top: 9rem;
    }

    .FAQ-main-content {
        flex: 3;
        max-width: 720px;
    }

    .FAQ-heading {
        font-weight: 800;
        font-size: 27px;
        line-height: 1.25;
        color: #12222b;
        margin-bottom: 6px;
    }

    .FAQ-author-date {
        display: flex;
        justify-content: space-between;
        font-size: 13px;
        color: #555;
        margin-bottom: 18px;
        font-weight: 400;
    }

    .FAQ-main-img {
        width: 100%;
        border-radius: 8px;
        margin-bottom: 20px;
        object-fit: cover;
        height: 370px;
        background: #ddd;
    }

    .FAQ-p {
        margin-bottom: 15px;
        font-size: 18px;
        font-weight: 300;
        color: #555;
    }

    .FAQ-orange-bold {
        font-size: 18px;
        color: #f39c12;
        font-weight: 700;
    }

    .li-PM2-and-PMO {
        font-weight: 300;
        font-size: 18px;
        color: #555;
    }

    .FAQ-secondary-section {
        display: flex;
        align-items: center;
        gap: 20px;
        margin-top: 40px;
        margin-bottom: 40px;
    }

    .FAQ-secondary-img {
        width: 370px;
        height: 270px;
        border-radius: 8px;
        object-fit: cover;
    }

    .FAQ-secondary-text {
        max-width: 300px;
        font-size: 18px;
        color: #555;
    }

    .FAQ-secondary-text-title {
        margin: 0 0 10px 0;
        font-weight: 700;
        font-size: 18px;
        color: #f39c12;
        line-height: 1.25;
    }

    .FAQ-secondary-text strong {
        color: #f39c12;
        font-weight: 700;
    }

    .FAQ-explanation-list {
        max-width: 720px;
        margin-top: 25px;
        margin-bottom: 25px;
        font-size: 16px;
        color: #555;
    }

    .FAQ-explanation-list ul {
        padding-left: 50px;
    }

    .FAQ-explanation-list ul li {
        font-size: 18px;
        margin-bottom: 5px;
        font-weight: 300;
    }

    .FAQ-final-line {
        margin-top: 15px;
        font-size: 18px;
        color: #555;
        font-weight: 300;
        margin-bottom: 40px;
    }

    .FAQ-final-line .FAQ-orange-bold {
        font-weight: 700;
        color: #f39c12;
    }

    aside.FAQ-sidebar {
        flex: 1.25;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        font-size: 14px;
        color: #15232e;
    }

    .FAQ-sidebar-title {
        font-weight: 800;
        font-size: 20px;
        margin-bottom: 18px;
        border-bottom: 1px solid #cccccc;
        padding-bottom: 8px;
    }

    .FAQ-recent-post {
        display: flex;
        gap: 12px;
        margin-bottom: 18px;
        border-bottom: 1px solid #ccc;
        padding-bottom: 14px;
    }

    .FAQ-recent-post:last-child {
        margin-bottom: 0;
        border-bottom: none;
        padding-bottom: 0;
    }

    .FAQ-recent-post img {
        width: 300px;
        height: 170px;
        border-radius: 15px;
        object-fit: cover;
        background: #aaa;
        filter: brightness(0.7);
    }

    .FAQ-post-text {
        margin-top: 10px;
        width: 300px;
        font-weight: 600;
        color: #15232e;
        flex: 1;
        font-size: 16px;
        line-height: 1.15;
    }

    .FAQ-explore-btn {
        display: block;
        width: 90px;
        margin: 12px auto 0;
        padding: 6px 0;
        background: #d3d6d9;
        border-radius: 4px;
        font-weight: 800;
        font-size: 13px;
        color: #182f41;
        border: none;
        cursor: pointer;
        transition: background-color 0.25s ease;
        user-select: none;
        text-align: center;
    }

    .FAQ-explore-btn:hover {
        background-color: #a8afba;
    }

    /* Hamburger Menu Styles */
    .FAQ-hamburger {
        color: white;
        display: none;
        width: 48px;
        height: auto;
        cursor: pointer;
        position: fixed;
        top: 90px;
        right: 1px;
        z-index: 1001;
        background: rgba(22, 22, 22, 0.492);
        padding: 5px;
        border-top-left-radius: 25px;
        border-bottom-left-radius: 25px;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.30);

        padding: 18px 18px;
    }

    .FAQ-hamburger span {
        display: block;
        height: 3px;
        width: 100%;
        background-color: #333;
        border-radius: 3px;
        transition: all 0.3s ease;
    }

    .FAQ-hamburger.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .FAQ-hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .FAQ-hamburger.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .box-text-div {
        margin-top: 50px;
        padding: 15px 20px;
        border: 1.5px solid black;
        border-radius: 10px;
        margin-bottom: 40px;
    }

    .li-space-from-left {
        margin-left: 60px;
        padding: 15px;
    }

    @media (max-width: 1024px) {
        .FAQ-container {
            margin-top: 7rem;
            padding: 20px;
        }
    }

    /* Mobile Styles */
    @media (max-width: 768px) {

        .FAQ-container {
            flex-direction: column;
            gap: 20px;
            margin-top: 5rem;
            padding: 20px;
        }

        .FAQ-main-content {
            max-width: 100%;
        }

        .FAQ-heading {
            font-size: 20px;
        }

        .FAQ-author-date {
            flex-direction: column;
            gap: 5px;
        }

        .FAQ-main-img {
            height: 200px;
        }

        .FAQ-secondary-section {
            flex-direction: column;
            text-align: center;
        }

        .FAQ-secondary-img {
            width: 100%;
            max-width: 300px;
            height: 150px;
        }

        .FAQ-hamburger {
            display: flex;
        }

        aside.FAQ-sidebar {
            position: fixed;
            top: 0;
            right: -100%;
            width: 80%;
            max-width: 300px;
            height: 100vh;
            background: white;
            padding: 20px;
            box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
            transition: right 0.3s ease;
            z-index: 1100;
            overflow-y: auto;
        }

        aside.FAQ-sidebar.active {
            right: 0;
        }

        .FAQ-sidebar-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 999;
            display: none;
        }

        .FAQ-sidebar-overlay.active {
            display: block;
        }

        .FAQ-post-text {
            width: 200px;
            font-weight: 300;
            font-size: 15px;
            margin-top: 5px;
        }
    }

    /* Small Mobile Styles */
    @media (max-width: 480px) {
        .FAQ-heading {
            font-size: 18px;
        }

        .FAQ-p {
            font-size: 14px;
        }

        .FAQ-secondary-text {
            font-size: 13px;
            text-align: left;
        }

        .FAQ-explanation-list {
            font-size: 13px;
        }

        .FAQ-recent-post {
            flex-direction: column;
            gap: 8px;
        }

        .FAQ-recent-post img {
            width: 100%;
            height: 120px;
        }

        .FAQ-explanation-list ul {
            padding-left: 30px;
        }

        .FAQ-orange-bold {
            font-size: 15px;
        }

        .li-PM2-and-PMO {
            font-size: 15px;
        }

        .FAQ-explanation-list ul li {
            font-size: 15px;
        }
    }