/* FAQ Section Styles */
.faq-section {
    padding: 80px 0;
    background: var(--bg-color);
}

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

.category-btn {
    padding: 12px 24px;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: 30px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

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

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

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

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

.faq-question h3 {
    margin: 0;
    font-size: 18px;
    color: var(--text-color);
    font-weight: 600;
}

.toggle-icon {
    font-size: 24px;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

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

.faq-answer p {
    margin: 0;
    padding-bottom: 20px;
    color: var(--text-color);
    line-height: 1.6;
}

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

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

/* Responsive Styles */
@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }

    .faq-categories {
        gap: 15px;
        margin-bottom: 30px;
    }

    .category-btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .faq-question h3 {
        font-size: 16px;
    }

    .toggle-icon {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 40px 0;
    }

    .faq-categories {
        gap: 10px;
    }

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

    .faq-question {
        padding: 15px;
    }

    .faq-question h3 {
        font-size: 15px;
    }

    .faq-answer p {
        font-size: 14px;
        padding-bottom: 15px;
    }
} 