
#search {
    width: 70%;
    padding: 10px;
    margin-bottom: 20px;
    font-size: 16px;
    margin-left: 15%;
}

.faq-container {
    border-top: 1px solid #ccc;
    height: 100%;
}

.faq-item {
    border-bottom: 1px solid #ccc;
    width: 80%;
    margin-left: 10%;
}

.question {
    padding: 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.question:hover {
    background-color: #555;
}

.answer {
    display: none;
    padding: 15px;
    background-color: #333;
    color: #f9f9f9;
    text-align:  center;
}

.arrow {
    font-size: 20px;
    transition: transform 0.3s;
}

.question.active .arrow {
    transform: rotate(180deg);
}

.answer.show {
    display: block;
    transition: max-height 0.3s ease;
}
