   .faq-title {
        text-align: center;
        margin-bottom: 30px;
        font-size: 28px;
        font-weight: bold;
        color: #333;
    }

    .faq-item {
        margin-bottom: 15px;
        border: 1px solid #ddd;
        border-radius: 8px;
        background-color: #fff;
        overflow: hidden;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .faq-question {
        padding: 15px 20px;
        background-color: #dcdbdb;
        color: #555;
        font-weight: bold;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .faq-question:hover {
        background-color: #c8c4c4;
    }

    .faq-answer {
        display: none;
        padding: 15px 20px;
        color: #555;
        font-size: 16px;
        background-color: #fdfdfd;
    }

    .faq-answer.visible {
        display: block;
    }

    .icon {
        font-size: 18px;
        transition: transform 0.3s ease;
    }

    .faq-question.active .icon {
        transform: rotate(180deg);
    }