.faq-container {
            width: 100%;
            max-width: 900px;
            margin: 30px auto;
        }

        .faq-title {
            text-align: center;
            margin-bottom: 25px;
            font-size: 30px;
        }

        .faq-item {
            background: #fff;
            border: 1px solid #ddd;
            margin-bottom: 10px;
            border-radius: 6px;
            overflow: hidden;
        }

        .faq-question {
            width: 100%;
            border: none;
            outline: none;
            background: #fff;
            padding: 18px 50px 18px 20px;
            text-align: left;
            font-size: 17px;
            font-weight: 600;
            cursor: pointer;
            position: relative;
            transition: background 0.3s ease;
        }

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

        .faq-question::after {
            content: "+";
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 24px;
            font-weight: normal;
        }

        .faq-question.active::after {
            content: "−";
        }

        .faq-answer {
            display: none;
            padding: 0 20px 20px;
            font-size: 15px;
            line-height: 1.7;
            background: #fff;
        }

        .faq-answer.open {
            display: block;
        }

        /* Mobile Responsive */
        @media (max-width: 767px) {

            body {
                padding: 10px;
            }

            .faq-container {
                margin: 15px auto;
            }

            .faq-title {
                font-size: 24px;
                margin-bottom: 20px;
            }

            .faq-question {
                padding: 15px 45px 15px 15px;
                font-size: 15px;
            }

            .faq-question::after {
                right: 15px;
                font-size: 21px;
            }

            .faq-answer {
                padding: 0 15px 15px;
                font-size: 14px;
                line-height: 1.6;
            }
        }