/* === TITLE MATCH COLOR WITH FAQ === */
                        .cok-faq-title {
                            text-align: center;
                            color: #B9BBFF;
                            font-size: 32px;
                            margin-top: 25px;
                            margin-bottom: 25px;
                            font-weight: 800;
                            font-family: "Segoe UI", sans-serif;
                            text-shadow: 0 0 12px #4C1D95, 0 0 20px #4A4270;
                            letter-spacing: 1px;
                        }

                        /* === FAQ CONTAINER === */
                        .cok-faq {
                            max-width: 1200px;
                            margin: 10px auto 40px auto;
                            font-family: "Segoe UI", sans-serif;
                        }

                        /* === QUESTION BUTTON === */
                        .cok-faq-q {
                            width: 100%;
                            padding: 14px;
                            background: #B9BBFF;
                            color: #0E0820;
                            font-weight: bold;
                            border: 1px solid #B9BBFF;
                            border-radius: 8px;
                            cursor: pointer;
                            text-align: left;
                            margin-bottom: 8px;
                            transition: .25s ease;
                            box-shadow: 0 0 10px #B9BBFF;
                        }

                        .cok-faq-q:hover {
                            background: #B9BBFF;
                            box-shadow: 0 0 15px #B9BBFF;
                        }

                        /* === ANSWER BOX === */
                        .cok-faq-a {
                            max-height: 0;
                            overflow: hidden;
                            background: #B9BBFF;
                            color: #2A1152;
                            margin-top: -5px;
                            border-radius: 0 0 8px 8px;
                            padding: 0 14px;
                            border-left: 1px solid #A9ABFF33;
                            border-right: 1px solid #A9ABFF33;
                            border-bottom: 1px solid #A9ABFF33;
                            transition: max-height .35s ease, padding .25s ease;
                            box-shadow: inset 0 0 10px #A9ABFF33;
                        }

                        .cok-faq-a.open {
                            max-height: 500px;
                            padding: 14px;
                        }

                        /* === RESPONSIVE === */
                        @media (max-width: 480px) {
                            .cok-faq-title {
                                font-size: 26px;
                            }
                        }
