<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* FAQ Section Styles */
.dialogue-faq {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.dialogue-faq .faq-header {
    text-align: center;
    margin-bottom: 30px;
}

.dialogue-faq .faq-header h2 {
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.dialogue-faq .faq-content {
    display: grid;
    gap: 20px;
}

.dialogue-faq .faq-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dialogue-faq .faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.dialogue-faq .faq-item h3 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.dialogue-faq .faq-item p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .dialogue-faq {
        margin: 30px 15px;
        padding: 15px;
    }

    .dialogue-faq .faq-header h2 {
        font-size: 20px;
    }

    .dialogue-faq .faq-item h3 {
        font-size: 16px;
    }

    .dialogue-faq .faq-item p {
        font-size: 14px;
    }
} </pre></body></html>