.faq-header {
    background: var(--gradient);
    padding: 120px 0 60px;
    text-align: center;
    color: var(--white);
}

.faq-header h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.full-faq-section {
    padding: 60px 0;
    background: var(--light-bg);
}

.faq-search {
    position: relative;
    max-width: 600px;
    margin: 0 auto 40px;
}

.faq-search input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid transparent;
    border-radius: 30px;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.faq-search input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.faq-search i {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
}

.faq-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.category-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    background: var(--white);
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.category-btn:hover,
.category-btn.active {
    background: var(--primary-color);
    color: var(--white);
}

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

.faq-item {
    margin-bottom: 20px;
    border-radius: 10px;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-color);
    flex: 1;
    padding-right: 20px;
}

.faq-toggle {
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer ul {
    list-style-type: none;
    padding-left: 20px;
    margin-top: 10px;
}

.faq-answer li {
    margin: 10px 0;
    position: relative;
}

.faq-answer li:before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: -20px;
}

/* Hide FAQs that don't match search or category */
.faq-item.hidden {
    display: none;
}

@media (max-width: 768px) {
    .faq-header {
        padding: 100px 0 40px;
    }

    .faq-header h1 {
        font-size: 2rem;
    }

    .category-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }

    .faq-question h3 {
        font-size: 1rem;
    }
}
