:root {
            --primary-orange: #f15a24;
            --dark-orange: #d94814;
            --light-orange: #fdf2ec;
            --text-dark: #1a252c;
            --text-gray: #657786;
            --bg-light: #f9f9f9;
            --dark-bar: #0d131a;
        }

        body {
            background-color: #ffffff;
            color: var(--text-dark);
            padding: 0;
        }

        body.pricing-page header {
            background: #1b2028;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.16);
            backdrop-filter: none;
        }

        body.pricing-page header .container {
            padding: 0 24px;
        }

        /* ==========================================
           FAQ SECTION
           ========================================== */
        .faq-section {
            padding: 70px 24px 90px;
            background: #ffffff;
            font-family: 'Poppins', sans-serif;
        }

        .faq-container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: minmax(280px, 430px) 1fr;
            gap: 36px;
            align-items: start;
        }

        .faq-left {
            display: flex;
            flex-direction: column;
            gap: 18px;
        }

        .faq-left h2 {
            font-size: 34px;
            margin: 0;
            color: #111;
            line-height: 1.2;
        }

        .faq-left h2 span {
            color: #ff6a00;
        }

        .faq-image img {
            width: 100%;
            max-height: 420px;
            border-radius: 20px;
            object-fit: cover;
            display: block;
            box-shadow: 0 12px 30px rgba(15, 23, 42, 0.1);
        }

        .faq-content {
            min-width: 0;
        }

        .faq-item {
            border-bottom: 1px solid #e6e6e6;
            padding: 15px 0;
        }

        .faq-question {
            width: 100%;
            background: none;
            border: none;
            outline: none;
            font-size: 18px;
            font-weight: 600;
            color: #222;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            padding: 10px 0;
            font-family: 'Poppins', sans-serif;
        }

        .icon {
            background: #ff6a00;
            color: #fff;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 20px;
            transition: 0.3s;
            flex-shrink: 0;
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
        }

        .faq-answer p {
            margin: 0;
            color: #555;
            font-size: 15px;
            line-height: 1.6;
        }

        .faq-item.active .faq-answer {
            max-height: 1000px;
            padding-top: 10px;
        }

        .faq-item.active .icon {
            transform: rotate(45deg);
        }

        @media (max-width: 900px) {
            .faq-container {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .faq-left h2 {
                font-size: 28px;
            }
        }

        @media (max-width: 480px) {
            .faq-left h2 {
                font-size: 24px;
            }
            .faq-question {
                font-size: 16px;
            }
        }