.faq-container {
    padding: 20px;
    font-family: Montserrat, sans-serif;
    flex: 1;
}

.faq-container .header {
    flex-direction: row;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.faq-container h1 {
    color: #000;
    font-size: 32px;
    margin: 0;
}

.faq-container h4 {
    color: #555;
    font-size: 15px;
    margin-bottom: 15px;
}

.faq-container .search input {
    padding: 8px;
    font-size: 14px;
    border: 1px solid #000;
    width: 350px;
    font-weight: 500;
    color: #000;
}

.faq-container ul {
    list-style-type: none;
    padding: 0;
}

.faq-box {
    border: 1px solid #ddd;
    padding: 15px;
    background-color: #f9f9f9;
    margin-bottom: 15px;
    border-radius: 8px;
}

.faq-box .question {
    font-weight: 600;
    font-family: Montserrat, sans-serif;
    color: #000000;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
}

.faq-box .question:hover {
    color: #555;
}

.faq-box .toggle-icon {
    font-size: 20px;
    color: #555;
}

.faq-box .answer {
    font-size: 16px;
    color: #777;
    margin-top: 10px;
    display: none;
    padding-top: 10px;
    border-top: 1px solid #ddd;
}
