        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-title {
            margin-top: 4rem;
            margin-bottom: 2rem;
            font-size: 2.5rem;
            font-weight: 600;
            text-align: center;
            background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .faq-item {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            margin-bottom: 16px;
            overflow: hidden;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .faq-item:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        }

        .faq-question {
            padding: 24px 28px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 1.25rem;
            font-weight: 400;
            line-height: 1.4;
            transition: all 0.2s ease;
            user-select: none;
        }

        .faq-question:hover {
            color: #f0f0f0;
        }

        .faq-icon {
            width: 24px;
            height: 24px;
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            flex-shrink: 0;
            margin-left: 20px;
        }

        .faq-icon svg {
            width: 100%;
            height: 100%;
            stroke: currentColor;
        }

        .faq-item.active .faq-icon {
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .faq-answer-content {
            padding: 0 28px 28px 28px;
            font-size: 1rem;
            line-height: 1.6;
            color: #d0d0d0;
        }

        .faq-item.active .faq-answer {
            max-height: 200px;
        }

        .faq-item.active {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(255, 255, 255, 0.15);
        }

        /* Responsive design */
        @media (max-width: 768px) {
            .faq-title {
                font-size: 2.5rem;
                margin-bottom: 40px;
            }

            .faq-question {
                padding: 20px 20px;
                font-size: 1.1rem;
            }

            .faq-answer-content {
                padding: 0 20px 20px 20px;
                font-size: 0.95rem;
            }

            .faq-icon {
                margin-left: 15px;
            }
        }

        @media (max-width: 480px) {
           

            .faq-title {
                font-size: 2rem;
            }

            .faq-question {
                padding: 18px 16px;
                font-size: 1rem;
            }

            .faq-answer-content {
                padding: 0 16px 18px 16px;
            }
        }