#faqTabs .nav-link:hover,
.view-more-faq:hover {
    color: var(--primary-color)
}

#faqTabs {
    border-bottom: 2px solid #eaeaea;
    margin-bottom: 30px
}

#faqTabs .nav-item {
    margin-bottom: -2px
}

#faqTabs .nav-link {
    border: none;
    background: 0 0;
    color: var(--secondary-color);
    font-size: 16px;
    font-weight: 500;
    padding: 12px 25px;
    position: relative;
    transition: .3s;
    border-radius: 50px 50px 0 0;
    border: 1.5px solid var(--primary-color)
}

#faqTabs .nav-link.active,
.view-more-faq {
    background-color: var(--primary-color);
    border-radius: 50px
}

#faqTabs .nav-link.active {
    color: #fff !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .1)
}

#faqTabsContent {
    padding-top: 20px
}

#faq-section .faq-item {
    background: var(--white-color);
    border-radius: 12px;
    margin-bottom: 20px;
    transition: .3s;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .05)
}

.faq-footer {
    margin-top: 30px;
    margin-bottom: 20px;
    text-align: center
}

.view-more-faq {
    display: inline-block;
    padding: 12px 35px;
    color: #fff;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    transition: .3s;
    border: 1px solid var(--primary-color)
}

.view-more-faq:hover {
    background-color: transparent
}

@media (max-width:768px) {
    #faqTabs .nav-item {
        margin-bottom: 15px
    }
}

@media (max-width:600px) {
    #faqTabs .nav-item {
        margin-bottom: 15px
    }
}

.faq-trigger {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    cursor: pointer;
}
.q-number {
    background-color: var(--primary-color);
    color: white;
    padding: 5px 12px;
    border-radius: 5px;
    margin-right: 20px;
    font-weight: 600;
}
.q-text {
    flex-grow: 1;
    font-size: 18px;
    font-weight: 500;
    color: var(--primary-color);
}
.faq-icon {
    background-color: #f0f0f0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    transition: transform 0.3s ease;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 30px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: #555;
    line-height: 1.6;
}
.faq-item.active .faq-content {
    max-height: 1000px;
    padding: 0 30px 20px 30px;
}