/* Updated FAQ Section */
.faq-section {
    max-width: 1100px;
    margin: auto;
    padding: 2rem 1rem;
    font-family: 'Segoe UI', sans-serif;
}

.faq-section h5 {
    text-align: center;
    color: var(--primary);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin: 0.5rem 0;
    color: var(--primary);
}

.faq-section p.description {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.faq-item {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    background: #fff;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.faq-item.active .faq-question {
    background: var(--accent);
    color: #fff;
}

.faq-icon {
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 1rem 1.5rem;
    display: none;
    background: #fff;
    color: #333;
    border-top: 1px solid #e0e0e0;
}

.faq-item.active .faq-answer {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}