/* FAQs Hero Section */
.faqs-hero-section {
    background: linear-gradient(135deg, #8fa4b3 0%, #d4dde4 50%, #ffffff 100%);
    padding: 120px 0 200px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.faqs-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.faqs-badge {
    display: inline-block;
    background: linear-gradient(135deg, #00e676 0%, #00bcd4 100%);
    color: white;
    padding: 10px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 230, 118, 0.3);
}

.faqs-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #1a365d;
}

.faqs-hero-description {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 0;
    font-weight: 400;
}

/* FAQs Content Section */
.faqs-content-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.faqs-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Filters */
.faqs-filters {
    margin-bottom: 50px;
}

.faqs-filters h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #333;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-btn {
    background: white;
    border: 2px solid #e0e0e0;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: #666;
}

.filter-btn:hover,
.filter-btn.active {
    background: #007bff;
    border-color: #007bff;
    color: white;
}

/* FAQ Categories */
.faq-category {
    margin-bottom: 40px;
}

.category-title {
    font-size: 2rem;
    color: #333;
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 3px solid #007bff;
}

/* FAQ Items */
.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    background: white;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
    color: #333;
    font-weight: 600;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: #007bff;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.faq-item.active .faq-answer {
    padding: 25px 30px;
    max-height: 1000px;
}

.faq-answer p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #555;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul,
.faq-answer ol {
    margin: 15px 0;
    padding-left: 20px;
}

.faq-answer li {
    margin-bottom: 8px;
    line-height: 1.6;
    color: #555;
}

.faq-answer strong {
    color: #333;
    font-weight: 600;
}

/* Hidden categories */
.faq-category.hidden {
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .faqs-hero-title {
        font-size: 2.5rem;
    }

    .filter-buttons {
        justify-content: center;
    }

    .filter-btn {
        font-size: 14px;
        padding: 8px 16px;
    }

    .faq-question {
        padding: 20px;
    }

    .faq-answer {
        padding: 0 20px;
    }

    .faq-item.active .faq-answer {
        padding: 20px;
    }

    .category-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .faqs-hero-title {
        font-size: 2rem;
    }

    .filter-buttons {
        flex-direction: column;
        align-items: center;
    }

    .filter-btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}