
        .faq-container {
            max-width: 1000px;
            margin: 40px auto;
            padding: 0 20px;
            font-family: Arial, sans-serif;
        }
        .faq-title {
            font-size: 26px;
            font-weight: bold;
            color: #222;
            margin-bottom: 24px;
            text-align: center;
        }
        .faq-item {
            border-bottom: 1px solid #eee;
            padding: 16px 0;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        .faq-item:hover {
            background-color: #f7f9fc;
            padding-left: 10px;
            border-radius: 6px;
        }
        .faq-question {
            font-size: 16px;
            font-weight: 600;
            color: #003366;
            margin-bottom: 8px;
        }
        .faq-answer {
            font-size: 15px;
            color: #444;
            line-height: 1.6;
        }
    