.check-icon {
    width: 30px;
    height: 30px;
    color: var(--theme-color);
    flex-shrink: 0;
}

.faq-section {
    background: var(--secondary-color);
}

.faq-section .sec-title .sub-title {
    display: block;
    color: var(--theme-color);
    font-weight: 700;
    margin-bottom: 8px;
    font-family: var(--text-font);
}

.faq-wrapper {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 10px;
}

.faq-item {
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.98);
    color: var(--text-color);
    box-shadow: 0 8px 24px rgba(3, 9, 26, 0.35);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    padding: 18px 22px;
    background: transparent;
    border: 0;
    text-align: left;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    position: relative;
    color: var(--text-color);
    font-family: var(--title-font);
}

.faq-toggle {
    margin-left: auto;
    font-size: 1.3rem;
    color: var(--secondary-color);
    font-family: var(--text-font);
}

.faq-answer {
    padding: 0 22px 18px 22px;
    color: rgba(17, 24, 39, 0.9);
    line-height: 1.7;
    transition: max-height 0.38s cubic-bezier(.2, .9, .2, 1), opacity 0.28s;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    font-family: var(--text-font);
}

.faq-item.active .faq-answer {
    opacity: 1;
}

.faq-item:first-child {
    transform: translateY(0);
}

.accordion-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1rem;
    border-radius: 8px !important;
    overflow: hidden;
}

.accordion-button {
    background: transparent;
    color: var(--title-color);
    font-weight: 600;
    padding: 1.5rem;
    border: none;
    font-family: var(--title-font);
}

.accordion-button:not(.collapsed) {
    background: rgba(244, 162, 97, 0.1);
    color: var(--theme-color);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-body {
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.8);
    padding: 1.5rem;
    line-height: 1.8;
    font-family: var(--text-font);
}