/* FAQ Section Styles */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
}

.faq-section h2 {
    color: #333;
    position: relative;
    margin-bottom: 30px;
    font-weight: 700;
}

.faq-section h2:after {
    content: '';
    position: absolute;
    width: 70px;
    height: 3px;
    background: #0d6efd;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.faq-filter {
    margin: 30px 0;
}

.faq-filter .filter-btn {
    border-radius: 30px;
    padding: 8px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.faq-filter .filter-btn.active {
    background-color: #0d6efd;
    color: white;
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.2);
}

.faq-accordion .accordion-item {
    border: none;
    border-radius: 10px !important;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.faq-accordion .accordion-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.faq-accordion .accordion-button {
    font-weight: 600;
    padding: 20px 25px;
    background-color: #fff;
    color: #333;
    border: none;
    box-shadow: none;
    transition: all 0.3s ease;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background-color: #f8f9fa;
    color: #0d6efd;
}

.faq-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: rgba(13, 110, 253, 0.25);
}

.faq-accordion .accordion-button::after {
    background-size: 20px;
    transition: all 0.3s ease;
}

.faq-accordion .accordion-body {
    padding: 20px 25px;
    background-color: #f8f9fa;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-icon {
    color: #0d6efd;
    font-size: 1.2em;
    width: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.faq-answer {
    line-height: 1.8;
    color: #555;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

/* Responsive styles */
@media (max-width: 768px) {
    .faq-section {
        padding: 50px 0;
    }
    
    .faq-filter .filter-btn {
        margin-bottom: 10px;
    }
    
    .faq-accordion .accordion-button {
        padding: 15px;
    }
}

/* Animation Effects */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.faq-item {
    animation: fadeIn 0.5s ease-out forwards;
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }
.faq-item:nth-child(5) { animation-delay: 0.5s; }
.faq-item:nth-child(6) { animation-delay: 0.6s; }
.faq-item:nth-child(7) { animation-delay: 0.7s; }
.faq-item:nth-child(8) { animation-delay: 0.8s; }
.faq-item:nth-child(9) { animation-delay: 0.9s; }
.faq-item:nth-child(10) { animation-delay: 1.0s; }
