/* FAQ page styles */








/* Accordion Styles */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: #ffffff;
    border: 1px solid var(--panel-border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 137, 117, 0.01);
    transition: all 0.25s ease;
}

.faq-item:hover {
    border-color: var(--card-hover-border);
    box-shadow: 0 8px 25px rgba(0, 137, 117, 0.04);
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    font-weight: 700;
    color: var(--text-main);
    font-size: 1.05rem;
    transition: color 0.2s ease;
}

.faq-question:hover {
    color: var(--accent-primary);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0, 1, 0, 1);
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.faq-item.open .faq-answer {
    padding-bottom: 1.5rem;
    max-height: 1000px;
    transition: all 0.3s cubic-bezier(1, 0, 1, 0);
}

.faq-toggle-icon {
    width: 24px;
    height: 24px;
    background: rgba(0, 137, 117, 0.05);
    border: 1px solid rgba(0, 137, 117, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-primary);
    font-weight: 800;
    transition: transform 0.25s ease;
}

.faq-item.open .faq-toggle-icon {
    transform: rotate(45deg);
    background: var(--accent-primary);
    color: #ffffff;
}

