:root {

    --primary-color: ;

    --secondary-color: ;
    --tertiary-color: ;
    --accent-color: ;
    --font-1: ;
    --font-2: ;
    --font-2-b: ;

    --heading-size: ;
    --para-size: ;

    --padding: ;
}


.glow-2.glow-2{
    z-index: revert-layer;
}


.hero {
    min-height: 47vh !important;
    padding-bottom: 40px !important;
    display: flex;
    justify-content: center;
    align-items: end;
}


.hero h1 {
    width: min(850px, 100%);
    margin: 0 auto;
}



.faq-list {
    position: relative;
    width: min(1100px, 100%);
    margin: 0 auto;
}

.faq-category {
    position: absolute;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.faq-category.active {
    position: relative;
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.faq-item {
    background: rgba(30, 30, 30, 0.5);
    border: 1px solid #434343;
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;

    transition: all 0.3s ease;

    background: linear-gradient(to right, rgb(46, 46, 46, 0.6), rgb(19, 19, 19, 0.6));
}

.faq-item:hover {
    border-color: #444;
    background: rgba(35, 35, 35, 0.5);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 30px;
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    flex: 1;
    font-family: var(--font-1);
}

.faq-toggle {
    width: 24px;
    height: 24px;
    position: relative;
    flex-shrink: 0;
    margin-left: 20px;
}

.faq-toggle::before,
.faq-toggle::after {
    content: '';
    position: absolute;
    background: #fff;
    transition: transform 0.3s ease;
}

.faq-toggle::before {
    width: 100%;
    height: 2px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.faq-toggle::after {
    width: 2px;
    height: 100%;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

.faq-item.open .faq-toggle::after {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item.open .faq-answer {
    max-height: 500px;
    padding: 0 30px 24px 30px;
}

.faq-answer p {
    color: #aaa;
    line-height: 1.6;
    font-size: 15px;
}

.faq-answer * {
    color: #aaa !important;
    line-height: 1.6 !important;
    font-size: clamp(12px, 2vw, 15px) !important;
    font-weight: 400 !important;
    position: relative;
    left: 1px;
    font-family: var(--font-2);
}

.faq-answer ul {
    position: relative;
    left: 5px;
}


.faq-answer ul li {
    position: relative;
    left: 20px;
    width: 93%;
}

.faq-answer ul li {
    list-style-type: disc;
}

/* Smooth fade animation for category switch */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-category.active .faq-item {
    animation: fadeInUp 0.4s ease forwards;
}

.faq-category.active .faq-item:nth-child(1) {
    animation-delay: 0.05s;
}

.faq-category.active .faq-item:nth-child(2) {
    animation-delay: 0.1s;
}

.faq-category.active .faq-item:nth-child(3) {
    animation-delay: 0.15s;
}

.faq-category.active .faq-item:nth-child(4) {
    animation-delay: 0.2s;
}

.faq-category.active .faq-item:nth-child(5) {
    animation-delay: 0.25s;
}

.faq-category.active .faq-item:nth-child(6) {
    animation-delay: 0.3s;
}

@media (max-width: 768px) {
    .hero {
        min-height: 43vh !important;
    }

    .hero .text {
        position: relative;
        /* bottom: calc(10px + 5vh); */
    }

    .faq-header h1 {
        font-size: 36px;
    }

    .category-btn {
        font-size: 15px;
        padding: 11px 28px;
    }

    .faq-question {
        padding: 20px 18px;
    }

    .faq-question h3 {
        font-size: 16px;
        letter-spacing: 1px;

    }

    .faq-item.open .faq-answer {
        padding: 0 20px 20px 20px;
    }

    .faq-toggle {
        width: 20px;
        height: 20px;
    }

}


@media (max-width:500px) {
        .hero {
        min-height: 44vh !important;
        padding-bottom: unset;
    }
    .faq-question {
        padding: 17px 14px;
    }

    .faq-question h3 {
        font-size: 14px;
        letter-spacing: 1px;
    }
}