
        .faq-container {
            max-width: 600px;
            margin: 20px auto;
        }
        .faq-header {
            text-align: center;
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 20px;
        }
        .faq-item {
            border: 1px solid #ddd;
            margin-bottom: 10px;
            padding: 10px;
            background-color: #f9f9f9;
        }
        .faq-question {
            cursor: pointer;
            font-weight: bold;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .faq-toggle {
            font-size: 18px;
            transition: transform 0.2s;
        }
        .faq-toggle.minus {
            transform: rotate(45deg);
        }
        .faq-answer {
            display: none;
            padding-top: 10px;
        }
        .faq-answer.active {
            display: block;
        }
    