/* faq page styles - Extracted from inline style */

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}
.faq-item:hover {
    border-color: var(--primary-light);
}
.faq-item.active {
    border-color: var(--primary-color);
}
.faq-question {
    display: flex;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    transition: background 0.3s ease;
}
.faq-question:hover {
    background: var(--bg-light);
}
.faq-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}
.faq-icon i {
    color: var(--white);
}
.faq-question h4 {
    flex: 1;
    margin: 0;
    font-size: 1rem;
}
.faq-toggle {
    color: var(--text-muted);
    transition: transform 0.3s ease;
}
.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}
.faq-answer {
    display: none;
    padding: 0 25px 25px;
    padding-left: 80px;
}
.faq-item.active .faq-answer {
    display: block;
}
.faq-answer p {
    margin: 0;
    color: var(--text-light);
    line-height: 1.8;
}
.faq-cta {
    background: var(--bg-light);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    margin-top: 60px;
}
.faq-cta h3 {
    margin-bottom: 10px;
}
.faq-cta p {
    color: var(--text-light);
    margin-bottom: 25px;
}
.faq-cta .cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}
.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}
.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}