
    .faq-container {
        max-width: 850px;
        margin: 20px auto;
        font-family: 'Segoe UI', Arial, sans-serif;
        color: #333;
    }
    .faq-item {
        margin-bottom: 15px;
        border: 1px solid #eee;
        border-radius: 8px;
        overflow: hidden;
        transition: all 0.3s ease;
    }
    .faq-item:hover {
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        border-color: #e67e22;
    }
    .faq-question {
        background-color: #fcfcfc;
        padding: 18px 25px;
        font-weight: 600;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        color: #2c3e50;
    }
    .faq-answer {
        padding: 18px 25px;
        line-height: 1.7;
        background-color: #fff;
        border-top: 1px solid #eee;
        color: #555;
    }
    .faq-answer strong {
        color: #e67e22;
    }
