@import url("../components/breadcrumb.css");
@import url("../components/pagination.css");

h1 {
    margin-bottom: 1rem;
}

.faq-container {
    margin: 20px auto;
    font-family: Arial, sans-serif;
}

.faq-item {
    border-bottom: 1px solid #ddd;
}

.faq-question {
    width: 100%;
    padding: 15px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    text-align: left;
}

.faq-question h2 {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: #f9f9f9;
}

.faq-answer p {
    padding: 15px;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-item.active .arrow {
    transform: rotate(180deg);
    transition: transform 0.3s;
}

.arrow {
    transition: transform 0.3s;
}
