/* FAQ Page Styles */
.faq-page-wrapper {
    padding: 60px 20px;
    background-color: var(--color-white);
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

/* Header Section */
.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-header h1 {
    font-size: 2.75rem;
    font-weight: var(--fw-semibold);
    color: var(--color-text);
    margin-bottom: 20px;
}

/*.faq-header p {*/
/*    font-size: 1.15rem;*/
/*    color: var(--color-text-muted);*/
/*    max-width: 650px;*/
/*    margin: 0 auto;*/
/*    line-height: 1.6;*/
/*}*/

/* Filter Navigation Tabs */
.faq-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 50px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--color-bg-light);
}

.filter-tab {
    text-decoration: none !important;
    padding: 10px 22px;
    border-radius: 9999px;
    background-color: #f8fafc;
    color: var(--color-text-muted);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.filter-tab:hover {
    background-color: var(--color-bg-light);
    color: var(--color-text);
}

.filter-tab.active {
    background-color: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
    box-shadow: 0 4px 6px -1px rgba(157, 195, 37, 0.4);
}

/* FAQ Category Blocks Styling */
.faq-category-block {
    margin-bottom: 40px;
    border: 1px solid var(--color-bg-light);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
}

.category-title {
    font-size: 1.4rem;
    font-weight: var(--fw-semibold);
    color: var(--color-text);
    background: #f8fafc;
    padding: 24px 30px;
    margin-bottom: 0px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--color-bg-light);
}

.faq-list {
    padding: 10px 30px 30px;
}

/* Individual FAQ Item (Accordion) */
.faq-item {
    border-bottom: 1px solid var(--color-bg-light);
    padding: 20px 0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: var(--fw-semibold);
    color: var(--color-text-body);
    transition: color 0.2s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--color-text-muted);
    font-size: 1rem;
    line-height: 1.7;
}

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

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

.faq-item.active .faq-question {
    color: var(--color-primary);
}

/* Accordion Toggle Icon (Chevron) */
.toggle-icon {
    width: 10px;
    height: 10px;
    border-right: 2px solid #94a3b8;
    border-bottom: 2px solid #94a3b8;
    transform: rotate(45deg);
    transition: transform 0.3s ease, border-color 0.3s ease;
    margin-right: 5px;
    flex-shrink: 0;
}

.faq-item.active .toggle-icon {
    transform: rotate(-135deg);
    border-color: var(--color-primary);
}

/* Contact Section Styling */
.faq-contact-section {
    text-align: center;
    background-color: #f8fafc;
    border-radius: 20px;
    padding: 50px;
    margin-top: 60px;
    border: 1px solid #e2e8f0;
}

.faq-contact-section h3 {
    font-size: 1.75rem;
    font-weight: var(--fw-semibold);
    margin: 0 0 15px 0;
    color: var(--color-text);
}

.faq-contact-section p {
    color: var(--color-text-muted);
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.contact-btn {
    text-decoration: none !important;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: var(--fw-semibold);
    transition: all 0.3s ease;
    font-size: 1rem;
}

.contact-btn.primary {
    background-color: var(--color-primary);
    color: var(--color-white);
    box-shadow: 0 4px 6px -1px rgba(157, 195, 37, 0.4);
}

.contact-btn.primary:hover {
    background-color: #8bb120;
    transform: translateY(-2px);
}

.contact-btn.secondary {
    background-color: var(--color-white);
    color: var(--color-text-muted);
    border: 1px solid #e2e8f0;
}

.contact-btn.secondary:hover {
    background-color: var(--color-bg-light);
    color: var(--color-text);
    transform: translateY(-2px);
}