.faq-hero-section {
    width: 100%;
    padding: 190px 0 64px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
}

.faq-hero-width-container {
    width: 1280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 56px;
    position: relative;
}

.faq-hero-purple-circle {
    left: 240px;
    top: 52px;
}

.faq-hero-blue-circle {
    width: 240px;
    height: 240px;
    right: 200px;
    top: -24px;
}

.faq-hero-title-container {
    width: 760px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    position: relative;
}

.faq-hero-title {
    width: 100%;
}

.faq-hero-description {
    width: 640px;
    margin-top: 0;
}

.faq-categories-main-container {
    width: 100%;
    height: 68px;
    padding: 16px 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.05);
}

.faq-category-button {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 0 8px;
    position: relative;
    color: #ababab;
    font-size: 16px;
    font-weight: var(--medium);
    line-height: 20px;
    transition: 0.35s;
}

.faq-category-button::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: var(--blue-04);
    opacity: 0;
    transform: scaleX(0.6);
    transition: 0.35s;
}

.faq-category-button.active {
    color: var(--light-blue-01);
    font-weight: var(--semiBold);
}

.faq-category-button.active::after {
    opacity: 1;
    transform: scaleX(1);
}

.faq-list-section {
    width: 100%;
    min-height: 896px;
    padding: 64px 0 100px;
    position: relative;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.faq-list-background-grid {
    position: absolute;
    inset: 0;
    background-image: url("../images/Graphic-Elements/squares-net-v3.svg");
    background-repeat: repeat;
    background-position: center;
    background-size: cover;
    opacity: 1;
    mix-blend-mode: overlay;
}

.faq-list-width-container {
    width: 1280px;
    position: relative;
    z-index: 2;
}

.faq-list-blue-circle {
    width: 180px;
    height: 180px;
    left: -42px;
    top: -32px;
}

.faq-list-title {
    color: var(--white);
    text-shadow: 0 4px 20px rgba(234, 234, 234, 0.25);
    font-size: 32px;
    font-weight: var(--medium);
    line-height: 32px;
    letter-spacing: -0.32px;
    background: linear-gradient(270deg, #FFF 28.51%, rgba(236, 236, 236, 0.40) 93.99%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    width: fit-content;
}

.faq-questions-main-container {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.faq-single-question {
    width: 100%;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(1, 7, 19, 0.10);
    transition: 0.4s;
    overflow: hidden;
}

.faq-single-question.active {
    border-color: rgba(67, 158, 239, 0.25);
    box-shadow: 0 4px 16px 0 rgba(255, 255, 255, 0.20);
}

.faq-single-question.hidden-by-filter {
    display: none;
}

.faq-single-question-trigger {
    width: 100%;
    padding: 48px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 80px;
    text-align: left;
}

.faq-single-question-content {
    flex: 1 0 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

.faq-single-question-title {
    color: #DEE2ED;
    font-size: 24px;
    font-weight: var(--semiBold);
    line-height: 32px;
}

.faq-single-question-answer-wrapper {
    width: 100%;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.45s ease, opacity 0.3s ease;
}

.faq-single-question.active .faq-single-question-answer-wrapper {
    opacity: 1;
}

.faq-single-question-answer {
    color: #B9CACB;
    font-size: 16px;
    font-weight: var(--regular);
    line-height: 24px;
    padding-right: 12px;
}

.faq-single-question-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    position: relative;
    margin-top: 2px;
}

.faq-single-question-icon::before,
.faq-single-question-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 2px;
    border-radius: 9999px;
    background: #3D9DE5;
    transform: translate(-50%, -50%);
    transition: 0.35s;
}

.faq-single-question-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-single-question.active .faq-single-question-icon::before {
    width: 22px;
    background: #C7D5EA;
    transform: translate(-50%, -50%) rotate(45deg);
}

.faq-single-question.active .faq-single-question-icon::after {
    width: 22px;
    background: #C7D5EA;
    transform: translate(-50%, -50%) rotate(-45deg);
}