.faq-section {
            padding: 60px 0 70px;
            background: #f8f9fc;
        }

        .faq-section .faq-heading {
            text-align: center;
            margin-bottom: 40px;
        }

        .faq-section .faq-heading p {
            font-size: 14px;
            font-weight: 600;
            color: #3fbafc;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 8px;
        }

        .faq-section .faq-heading h2 {
            font-size: 30px;
            font-weight: 700;
            color: #1a1a2e;
            margin-bottom: 12px;
        }

        .faq-section .faq-heading p.faq-sub {
            font-size: 15px;
            color: #666;
            font-weight: 400;
            letter-spacing: 0;
            text-transform: none;
            max-width: 580px;
            margin: 0 auto;
        }

        .faq-item {
            background: #ffffff;
            border: 1px solid #e4e8ef;
            border-radius: 10px;
            margin-bottom: 14px;
            overflow: hidden;
            transition: box-shadow 0.3s ease, border-color 0.3s ease;
        }

        .faq-item:hover {
            box-shadow: 0 6px 24px rgba(63, 186, 252, 0.15);
            border-color: #3fbafc;
        }

        .faq-item.active {
            border-color: #3fbafc;
            box-shadow: 0 6px 24px rgba(63, 186, 252, 0.18);
        }

        .faq-question {
            width: 100%;
            background: none;
            border: none;
            padding: 18px 22px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 14px;
            cursor: pointer;
            text-align: left;
            outline: none;
            transition: background 0.2s;
        }

        .faq-question:hover {
            background: #f0f9ff;
        }

        .faq-question .faq-q-text {
            font-size: 16px;
            font-weight: 600;
            color: #1a1a2e;
            line-height: 1.5;
            flex: 1;
            transition: color 0.2s;
        }

        .faq-item.active .faq-question .faq-q-text {
            color: #3fbafc;
        }

        .faq-question .faq-icon {
            width: 34px;
            height: 34px;
            min-width: 34px;
            border-radius: 50%;
            background: #f0f2f7;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s, transform 0.35s ease;
        }

        .faq-question .faq-icon i {
            font-size: 14px;
            color: #555;
            transition: color 0.3s, transform 0.35s ease;
        }

        .faq-item.active .faq-question .faq-icon {
            background: #3fbafc;
            transform: rotate(180deg);
        }

        .faq-item.active .faq-question .faq-icon i {
            color: #fff;
        }

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

        .faq-item.active .faq-answer {
            max-height: 400px;
            padding: 0 22px 20px;
        }

        .faq-answer p {
            font-size: 15px;
            color: #555;
            line-height: 1.75;
            margin: 0;
            border-top: 1px solid #f0f0f0;
            padding-top: 14px;
        }

        .faq-cta-wrap {
            text-align: center;
            margin-top: 34px;
        }

        .faq-cta-wrap a {
            display: inline-block;
            background: #3fbafc;
            color: #fff;
            padding: 13px 34px;
            border-radius: 6px;
            font-size: 15px;
            font-weight: 600;
            text-decoration: none;
            transition: background 0.3s, transform 0.2s;
        }

        .faq-cta-wrap a:hover {
            background: #1aa3e8;
            transform: translateY(-2px);
        }

        @media (max-width: 768px) {
            .faq-section .faq-heading h2 {
                font-size: 22px;
            }

            .faq-question .faq-q-text {
                font-size: 15px;
            }
        }
