
.faq-container {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px;
}

.faq-container h2 {
    text-align: center;
    font-size: 24px;
    color: #fff;
    border-bottom: 2px solid #1f1f1f;
}

.faq-item {
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.5s;
}

.faq-item:hover .faq-question {
    background: #00ff88;
}

.faq-item:hover .faq-question span {
}

.faq-container .faq-question {
    background: #1a1a1a;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 16px;
    color: #ccc;
    padding: 10px 20px;
    border-radius: 10px;
    transition: 0.5s all;
}

.icon {
    transition: transform 0.3s ease, color 0.3s ease;
    font-size: 18px;
    color: #888;
}

.main-faq-item-section.active .icon {
    transform: rotate(180deg);
    color: #00ff88;
}

.faq-answer {
    background: #1a1a1a;
    max-height: 0;
    overflow: hidden;
    font-size: 14px;
    color: #aaa;
    line-height: 1.8;
    transition: all 0.6s ease;
    border-radius: 10px;
}

.faq-answer p {
    padding: 10px 15px;
}


.main-faq-item-section.active .faq-answer {
    max-height: 300px;
    margin-top: 5px;
    margin-button: 10px;
}

span.faq-icon-inner {
    display: flex;
}

.faq-title-logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.faq-style-2 .main-faq-item-section.active .faq-answer {
    margin: 0;
}

.faq-style-2 .faq-answer {
    margin: 0;
    border-radius: 0;
}

.faq-style-2 .faq-container .faq-question {
    border-radius: 0;
}

.faq-style-2 .faq-item {
    border-radius: 10px;
    overflow: hidden;
}

.faq-style-2 .faq-item:hover .faq-question {
    background: none;
}

.faq-style-1 .faq-item:hover .faq-question {
    color: black;
}

.faq-style-1 .faq-item:hover .icon {
    color: black;
}

.faq-style-2 .main-faq-item-section:before {
    content: "";
    background: var(--e-global-color-primary);
    width: 100px;
    height: 50px;
    position: absolute;
    top: -5px;
    right: 10%;
    border-radius: 50%;
    z-index: 0;
    opacity: 0;
}

.faq-style-2 .faq-answer {
    background: none;
}


.faq-style-2 .faq-question {
    background: none;
}

.faq-style-2 .faq-item {
    background: #1a1a1a;
}

.faq-style-2 .main-faq-item-section.active .faq-item {
    background: rgba(26, 26, 26, 0.74);
    backdrop-filter: blur(20px);
}

.main-faq-item-section {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.faq-container {
    position: relative;
}

.faq-progress-line {
    position: absolute;
    top: 0;
    right: 10px;
    width: 3px;
    height: 100%;
    background: #e5e5e5;
}

.faq-progress-bar {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 0;
    background: #6a5cff;
    transition: height .3s ease;
}

.faq-style-2 .main-faq-item-section.active::before {
    opacity: 1;
}