.faq-page {
        width: 100%;
        max-width: 900px;
        margin: 0 auto;
        padding: 2rem 1.5rem;
    }

    .faq-header {
        text-align: center;
        margin-bottom: 3rem;
    }

    .faq-title {
        font-family: var(--font-mono);
        font-size: 2.5rem;
        font-weight: 700;
        color: #ffffff;
        letter-spacing: 0.05em;
        margin-bottom: 0.75rem;
    }

    .faq-subtitle {
        font-size: 1rem;
        color: #999999;
        line-height: 1.6;
    }

    .faq-container {
        background: #000000;
        border: 1px solid #222222;
        border-radius: 16px;
        overflow: hidden;
    }

    .faq-item {
        border-bottom: 1px solid #1a1a1a;
    }

        .faq-item:last-child {
            border-bottom: none;
        }

    .faq-question-wrapper {
        position: relative;
        list-style: none;
    }



    .faq-question {
        width: 100%;
        padding: 1.5rem 3.5rem 1.5rem 1.75rem;
        background: transparent;
        border: none;
        text-align: left;
        cursor: pointer;
        font-size: 1rem;
        font-weight: 600;
        color: #ffffff;
        line-height: 1.5;
        transition: all 0.2s;
        display: block;
    }

    .faq-question-wrapper:hover .faq-question {
        background: rgba(255, 255, 255, 0.02);
        color: #ffffff;
    }

    .faq-toggle {
        position: absolute;
        right: 1.75rem;
        top: 50%;
        transform: translateY(-50%);
        width: 24px;
        height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #666666;
        font-size: 1.2rem;
        transition: all 0.2s;
        pointer-events: none;
    }

    details[open] .faq-toggle {
        transform: translateY(-50%) rotate(180deg);
        color: #ffffff;
    }

    .faq-answer {
        padding: 0 1.75rem 1.75rem 1.75rem;
        color: #cccccc;
        font-size: 0.95rem;
        line-height: 1.7;
        background: rgba(255, 255, 255, 0.01);
        white-space: pre-wrap;
    }

        .faq-answer p {
            margin: 0 0 1rem 0;
        }

            .faq-answer p:last-child {
                margin-bottom: 0;
            }

    .faq-footer {
        margin-top: 3rem;
        padding: 2rem;
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid #222222;
        border-radius: 12px;
        text-align: center;
    }

    .faq-footer-title {
        font-size: 1.1rem;
        font-weight: 600;
        color: #ffffff;
        margin-bottom: 0.75rem;
    }

    .faq-footer-text {
        font-size: 0.9rem;
        color: #999999;
        line-height: 1.6;
        margin-bottom: 1.25rem;
    }

    .faq-footer-links {
        display: flex;
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
    }

    .faq-footer-link {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.65rem 1.25rem;
        background: transparent;
        border: 2px solid #ffffff;
        border-radius: 8px;
        color: #ffffff;
        font-size: 0.85rem;
        font-weight: 600;
        text-decoration: none;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        transition: all 0.2s;
    }

        .faq-footer-link:hover {
            background: #ffffff;
            color: #000000;
        }

    .empty-state {
        padding: 3rem;
        text-align: center;
        color: #666666;
    }

    @media (max-width: 768px) {
        .faq-title {
            font-size: 2rem;
        }

        .faq-question {
            padding: 1.25rem 3rem 1.25rem 1.25rem;
            font-size: 0.95rem;
        }

        .faq-toggle {
            right: 1.25rem;
        }

        .faq-answer {
            padding: 0 1.25rem 1.5rem 1.25rem;
            font-size: 0.9rem;
        }

        .faq-footer-links {
            flex-direction: column;
        }

        .faq-footer-link {
            width: 100%;
            justify-content: center;
        }
    }
