@import './IndexStyle.css';

.faq-container{
    width: 100%;
    max-width: 2600px;
}

.faq-items-container{
    margin: 0 auto;
    width: min(1024px, 80%);
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.faq-title{
    text-align: center;
    width: fit-content;
    margin: 0 auto;
    margin-bottom: 10px;
}

.faq-title h2{
    color: var(--secondary-color-light-10);
    font-family: var(--main-font);
    font-size: var(--margin-xxl);
    font-weight: 600;
    letter-spacing: 1px;
    text-shadow: 0 0 10px black;
}

.faq-item{
    cursor: pointer;
    position: relative;
    border: solid 3px var(--secondary-color-light-10);
    border-radius: 5px;
    padding: 10px 20px;

    display: flex;
    flex-direction: column;
    transition: border 0.2s ease;
}

.faq-item:hover{
    border: solid 3px var(--secondary-color-dark-10);
}

.faq-item.active{
    border: solid 3px var(--secondary-color-dark-10);
}

.faq-question{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3{
    position: relative;
    display: inline-block;
    user-select: none;
    color: whitesmoke;
    font-family: var(--main-font);
    font-weight: 500;
    font-size: calc(var(--margin-l) + 0.2rem);
    line-height: 1.5;
    margin-right: 5%;
}

.faq-item h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px; 
    width: 0;
    height: 2px; 
    background-color: var(--secondary-color-dark-10);
    transition: width 0.3s ease; 
}

.faq-item.active h3::after {
    width: 100%; 
}

.faq-indicator{
    position: relative;
    width: 42px;
    height: 42px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.faq-indicator::before,
.faq-indicator::after {
    content: '';
    position: absolute;
    width: 20px; 
    height: 3px; 
    background-color: #ffffff;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.faq-indicator::before {
    transform: rotate(0deg);
}

.faq-indicator::after {
    transform: rotate(90deg);
}

.faq-item.active .faq-indicator::after {
    opacity: 0;
    transform: rotate(90deg);
}

.faq-answer{
    overflow: hidden;
    max-height: 0;

    transition: max-height 0.5s ease, opacity 0.5s ease;
}

.faq-answer p{
    padding: 1.5% 0; 
    color: whitesmoke;
    font-family: var(--main-font);
    font-weight: 400;
    font-size: 20px;
    line-height: 1.8;
}

.faq-answer-options{
    margin-top: 3%;
    margin-bottom: 1%;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.faq-answer-option{
    position: relative;
    width: 100%;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    margin-top: 3%;
}

.faq-answer-option:nth-of-type(1){
    margin-top: 0;
}

.faq-answer-option-title{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.faq-answer-option-title h4{
    position: relative;
    display: inline-block;
    user-select: none;
    color: white;
    font-family: var(--main-font);
    font-weight: 500;
    font-size: var(--margin-l);
}

.faq-answer-option-title h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px; 
    width: 0;
    height: 2px; 
    background-color: rgba(255, 255, 255, 1);
    transition: width 0.3s ease; 
}

.faq-answer-option.active .faq-answer-option-title h4::after {
    width: 100%; 
}


.faq-answer-option-content p{
    font-family: var(--main-font);
    font-weight: 400;
    color: white;
    font-size: 20px;
    line-height: 1.6;
}

.faq-item-spacer{
    user-select: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--margin-l);
}

.faq-item-spacer p{
    font-family: var(--main-font);
    font-size: var(--margin-xm);
    color: whitesmoke;
    font-weight: 500;
}

.faq-item-spacer a{
    text-decoration: none;
    font-family: var(--main-font);
    font-size: var(--margin-xm);
    color: whitesmoke;
    font-weight: 500;
    padding: 10px 20px;

    box-shadow: 0 10px 4px rgba(0, 0, 0, 0.5);

    background-color: var(--secondary-color-light-10);
    transition: background-color 0.3s ease, box-shadow 0.2s ease;
}

.faq-item-spacer a:hover{
    background-color: var(--secondary-color);
}

.faq-item-spacer a:active{
    box-shadow: 0 0px 4px rgba(0, 0, 0, 0.5);
    background-color: var(--secondary-color-dark-10);
}

@media screen and (max-width: 1680px){
    .faq-title h2{
        color: var(--secondary-color-light-10);
        font-family: var(--main-font);
        font-size: calc(var(--margin-xl) + 0.1rem);
        font-weight: 600;
        letter-spacing: 1px;
        text-shadow: 0 0 10px black;
    }

    .faq-item{
        border: solid 3px var(--secondary-color-light-10);
        border-radius: 5px;
        padding: 5px 15px;
    }

    .faq-question h3{
        font-family: var(--main-font);
        font-weight: 500;
        font-size: calc(var(--margin-l));
        line-height: 1.5;
        margin-right: 5%;
    }

    .faq-indicator{
        width: 25px;
        height: 45px;
    }
    
    .faq-indicator::before,
    .faq-indicator::after {
        width: 18px; 
        height: 2px; 
    }

    .faq-answer p{
        padding: 1.5% 0; 
        font-size: calc(var(--margin-l) - 0.1rem);
    }

    .faq-answer-option-title h4{
        font-size: calc(var(--margin-l) - 0.1rem);
    }

    .faq-answer-option-content p{
        font-size: calc(var(--margin-l) - 0.1rem);
    }

    .faq-item-spacer p{
        font-family: var(--main-font);
        font-size: var(--margin-m);
        color: whitesmoke;
        font-weight: 500;
    }

    .faq-item-spacer a{
        text-decoration: none;
        font-family: var(--main-font);
        font-size: var(--margin-m);
        color: whitesmoke;
        font-weight: 500;
        padding: 8px 15px;
    
        box-shadow: 0 6px 4px rgba(0, 0, 0, 0.5);
    
        background-color: var(--secondary-color-light-10);
        transition: background-color 0.3s ease, box-shadow 0.2s ease;
    }
}

@media screen and (max-width: 1280px){
    
    .faq-container{
        width: 100%;
        max-width: 2600px;
    }
    
    .faq-items-container{
        margin: 0 auto;
        width: 55%;
        display: flex;
        flex-direction: column;
        gap: var(--margin-l);
    }
    
    .faq-title{
        text-align: center;
        width: fit-content;
        margin: 0 auto;
        margin-bottom: 10px;
    }
    
    .faq-title h2{
        font-family: var(--main-font);
        font-size: calc(var(--margin-l) + 0.25rem);
        font-weight: 600;
        letter-spacing: 1px;
        text-shadow: 0 0 10px black;
    }
    
    .faq-item{
        cursor: pointer;
        position: relative;
        border: solid 2px var(--secondary-color-light-10);
        border-radius: 5px;
        padding: 6px 15px;
    
        display: flex;
        flex-direction: column;
    }
    
    .faq-item:hover{
        border: solid 2px var(--secondary-color-dark-10);
    }
    
    .faq-item.active{
        border: solid 2px var(--secondary-color-dark-10);
    }
    
    .faq-question{
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .faq-question h3{
        position: relative;
        display: inline-block;
        user-select: none;
        color: whitesmoke;
        font-family: var(--main-font);
        font-weight: 500;
        font-size: calc(var(--margin-m));
        line-height: 1.5;
    }
    
    .faq-item h3::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -5px; 
        width: 0;
        height: 2px; 
        background-color: var(--secondary-color-dark-10);
        transition: width 0.3s ease; 
    }
    
    .faq-item.active h3::after {
        width: 100%; 
    }
    
    .faq-indicator{
        position: relative;
        width: 30px;
        height: 30px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .faq-indicator::before,
    .faq-indicator::after {
        content: '';
        position: absolute;
        width: 14px; 
        height: 2px; 
        background-color: #ffffff;
        transition: opacity 0.3s ease, transform 0.3s ease;
    }
    
    .faq-indicator::before {
        transform: rotate(0deg);
    }
    
    .faq-indicator::after {
        transform: rotate(90deg);
    }
    
    .faq-item.active .faq-indicator::after {
        opacity: 0;
        transform: rotate(90deg);
    }
    
    .faq-answer{
        overflow: hidden;
        max-height: 0;
    
        transition: max-height 0.5s ease, opacity 0.5s ease;
    }
    
    .faq-answer p{
        font-size: calc(var(--margin-m) - 0.05rem);
    }
    
    .faq-item.active #faq-answer-1{
        max-height: 250px;
    }
    
    .faq-item.active #faq-answer-2{
        max-height: 350px;
    }
    
    .faq-item.active #faq-answer-3{
        max-height: 200px;
    }
    
    .faq-item.active #faq-answer-4{
        max-height: 170px;
    }
    
    .faq-item.active #faq-answer-5{
        max-height: 100px;
    }

    .faq-answer-option{
        margin-top: 2%;
    }

    .faq-answer-option-title h4{
        position: relative;
        display: inline-block;
        user-select: none;
        color: white;
        font-family: var(--main-font);
        font-weight: 500;
        line-height: 2;
        font-size: calc(var(--margin-m) - 0.05rem);
    }
    
    .faq-answer-option-title h4::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0px; 
        width: 0;
        height: 1.5px; 
        background-color: rgba(255, 255, 255, 1);
        transition: width 0.3s ease; 
    }
    
    .faq-answer-option.active .faq-answer-option-title h4::after {
        width: 100%; 
    }

    .faq-answer-option-content p{
        font-family: var(--main-font);
        font-weight: 400;
        color: white;
        font-size: calc(var(--margin-m) - 0.05rem);
        line-height: 1.6;
    }

    
    .faq-item-spacer{
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: var(--margin-m);
    }

    .faq-item-spacer p{
        font-family: var(--main-font);
        font-size: calc(var(--margin-xs) + 0.15rem);
        color: whitesmoke;
        font-weight: 500;
    }

    .faq-item-spacer a{
        font-size: calc(var(--margin-xs) + 0.2rem);
        padding: 7px 18px;

        box-shadow: 0 6px 3px rgba(0, 0, 0, 0.5);
    }

    .faq-item-spacer a:hover{
        background-color: var(--secondary-color);
    }

    .faq-item-spacer a:active{
        box-shadow: 0 0px 4px rgba(0, 0, 0, 0.5);
        background-color: var(--secondary-color-dark-10);
    }
}

@media screen and (max-width: 1024px){
    
    .faq-container{
        width: 100%;
        max-width: 2600px;
    }
    
    .faq-items-container{
        margin: 0 auto;
        width: 55%;
        display: flex;
        flex-direction: column;
        gap: var(--margin-l);
    }
    
    .faq-title{
        text-align: center;
        width: fit-content;
        margin: 0 auto;
        margin-bottom: 10px;
    }
    
    .faq-title h2{
        font-family: var(--main-font);
        font-size: var(--margin-xm);
        font-weight: 600;
        letter-spacing: 1px;
        text-shadow: 0 0 10px black;
    }
    
    .faq-item{
        cursor: pointer;
        position: relative;
        border: solid 1.5px var(--secondary-color-light-10);
        border-radius: 5px;
        padding: 4px 10px;
    
        display: flex;
        flex-direction: column;
    }
    
    .faq-item:hover{
        border: solid 1.5px var(--secondary-color-dark-10);
    }
    
    .faq-item.active{
        border: solid 1.5px var(--secondary-color-dark-10);
    }
    
    .faq-question{
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .faq-question h3{
        position: relative;
        display: inline-block;
        user-select: none;
        color: whitesmoke;
        font-family: var(--main-font);
        font-weight: 500;
        font-size: var(--margin-s);
        line-height: 1.5;
    }
    
    .faq-item h3::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -5px; 
        width: 0;
        height: 1.5px; 
        background-color: var(--secondary-color-dark-10);
        transition: width 0.3s ease; 
    }
    
    .faq-item.active h3::after {
        width: 100%; 
    }
    
    .faq-indicator{
        position: relative;
        width: 30px;
        height: 30px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .faq-indicator::before,
    .faq-indicator::after {
        content: '';
        position: absolute;
        width: 10px; 
        height: 1.5px; 
        background-color: #ffffff;
        transition: opacity 0.3s ease, transform 0.3s ease;
    }
    
    .faq-indicator::before {
        transform: rotate(0deg);
    }
    
    .faq-indicator::after {
        transform: rotate(90deg);
    }
    
    .faq-item.active .faq-indicator::after {
        opacity: 0;
        transform: rotate(90deg);
    }
    
    .faq-answer{
        overflow: hidden;
        max-height: 0;
    
        transition: max-height 0.5s ease, opacity 0.5s ease;
    }
    
    .faq-answer p{
        font-size: calc(var(--margin-xs) + 0.1rem);
    }
    
    .faq-item.active #faq-answer-1{
        max-height: 110px;
    }
    
    .faq-item.active #faq-answer-2{
        max-height: 280px;
    }
    
    .faq-item.active #faq-answer-3{
        max-height: 110px;
    }
    
    .faq-item.active #faq-answer-4{
        max-height: 80px;
    }
    
    .faq-item.active #faq-answer-5{
        max-height: 60px;
    }

    .faq-item.active #faq-answer-6{
        max-height: 60px;
    }

    .faq-answer-option-title h4{
        position: relative;
        display: inline-block;
        user-select: none;
        color: white;
        font-family: var(--main-font);
        font-weight: 500;
        line-height: 2;
        font-size: calc(var(--margin-xs) + 0.1rem);
    }
    
    .faq-answer-option-title h4::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0px; 
        width: 0;
        height: 1px; 
        background-color: rgba(255, 255, 255, 1);
        transition: width 0.3s ease; 
    }
    
    .faq-answer-option.active .faq-answer-option-title h4::after {
        width: 100%; 
    }
    
    .faq-answer-option-content p{
        font-family: var(--main-font);
        font-weight: 400;
        color: white;
        font-size: calc(var(--margin-xs) + 0.1rem);
        line-height: 1.6;
    }

    
    .faq-item-spacer{
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: var(--margin-s);
    }

    .faq-item-spacer p{
        font-family: var(--main-font);
        font-size: calc(var(--margin-xs) + 0.05rem);
        color: whitesmoke;
        font-weight: 500;
    }

    .faq-item-spacer a{
        font-size: calc(var(--margin-xs));
        padding: 6px 15px;

        box-shadow: 0 6px 3px rgba(0, 0, 0, 0.5);
    }

    .faq-item-spacer a:hover{
        background-color: var(--secondary-color);
    }

    .faq-item-spacer a:active{
        box-shadow: 0 0px 4px rgba(0, 0, 0, 0.5);
        background-color: var(--secondary-color-dark-10);
    }
}

@media screen and (max-width: 800px){
.faq-container{
    width: 100%;
}

.faq-items-container{
    margin: 0 auto;
    width: 90%;
    display: flex;
    flex-direction: column;
    gap: 3vh;
}

.faq-title{
    text-align: center;
    width: fit-content;
    margin: 0 auto;
    margin-bottom: 10px;
}

.faq-title h2{
    color: var(--secondary-color);
    font-family: var(--main-font);
    font-size: calc(var(--margin-xl) + 0.3rem);
    font-weight: 600;
    letter-spacing: 1px;
    text-shadow: 0 0 10px black;
}

.faq-item{
    cursor: pointer;
    position: relative;
    border: solid 3px var(--secondary-color-light-10);
    padding: 10px 20px;

    display: flex;
    flex-direction: column;
}

.faq-item:hover{
    border: solid 3px var(--secondary-color-dark-10);
}

.faq-item.active{
    border: solid 3px var(--secondary-color-dark-10);
}

.faq-question{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.faq-question h3{
    position: relative;
    display: inline-block;
    user-select: none;
    color: whitesmoke;
    font-family: var(--main-font);
    font-weight: 500;
    font-size: calc(var(--margin-l) + 0.1rem);
    line-height: 1.5;
    margin-right: 5%;
}

.faq-item h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px; 
    width: 0;
    height: 2px; 
    transition: width 0.3s ease; 
}

.faq-item.active h3::after {
    width: 100%; 
}

.faq-indicator{
    position: relative;
    width: 42px;
    height: 42px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.faq-indicator::before,
.faq-indicator::after {
    content: '';
    position: absolute;
    width: 20px; 
    height: 3px; 
    background-color: #ffffff;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.faq-indicator::before {
    transform: rotate(0deg);
}

.faq-indicator::after {
    transform: rotate(90deg);
}

.faq-item.active .faq-indicator::after {
    opacity: 0;
    transform: rotate(90deg);
}

.faq-answer{
    overflow: hidden;
    max-height: 0;

    transition: max-height 0.5s ease, opacity 0.5s ease;
}

.faq-answer p{
    padding: 3% 0; 
    padding-bottom: 0;
    font-size: calc(var(--margin-xm) + 0.1rem);
}

.faq-item.active #faq-answer-1{
    max-height: 300px;
}

.faq-item.active #faq-answer-2{
    max-height: 600px;
}

.faq-item.active #faq-answer-3{
    max-height: 210px;
}

.faq-item.active #faq-answer-4{
    max-height: 150px;
}

.faq-item.active #faq-answer-5{
    max-height: 130px;
}

.faq-item.active #faq-answer-6{
    max-height: 150px;
}

.faq-answer-option-title h4{
    position: relative;
    display: inline-block;
    user-select: none;
    color: white;
    font-family: var(--main-font);
    font-weight: 500;
    font-size: calc(var(--margin-xm) + 0.1rem);
}

.faq-answer-option-title h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0px; 
    width: 0;
    height: 2px; 
    background-color: rgba(255, 255, 255, 1);
    transition: width 0.3s ease; 
}

.faq-answer-option.active .faq-answer-option-title h4::after {
    width: 100%; 
}

.faq-answer-option-content p{
    font-family: var(--main-font);
    font-weight: 400;
    color: white;
    font-size: calc(var(--margin-xm) + 0.1rem);
    line-height: 1.8;
}


.faq-item-spacer{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--margin-m);
}

.faq-item-spacer p{
    font-family: var(--main-font);
    font-size: calc(var(--margin-m));
    color: whitesmoke;
    font-weight: 500;
}

.faq-item-spacer a{
    font-size: calc(var(--margin-m));
    padding: 10px 30px;

    box-shadow: 0 10px 5px rgba(0, 0, 0, 0.5);
}

.faq-item-spacer a:hover{
    background-color: var(--secondary-color);
}

.faq-item-spacer a:active{
    box-shadow: 0 0px 4px rgba(0, 0, 0, 0.5);
    background-color: var(--secondary-color-dark-10);
}
}

@media screen and (max-width: 600px){
    .faq-container{
        width: 100%;
    }
    
    .faq-items-container{
        margin: 0 auto;
        width: 90%;
        display: flex;
        flex-direction: column;
        gap: 3vh;
    }
    
    .faq-title{
        text-align: center;
        width: fit-content;
        margin: 0 auto;
        margin-bottom: 10px;
    }
    
    .faq-title h2{
        color: var(--secondary-color);
        font-family: var(--main-font);
        font-size: calc(var(--margin-l) + 0.1rem);
        font-weight: 600;
        letter-spacing: 1px;
        text-shadow: 0 0 10px black;
    }
    
    .faq-item{
        cursor: pointer;
        position: relative;
        border: solid 2px var(--secondary-color-light-10);
        padding: 8px 15px;
    
        display: flex;
        flex-direction: column;
    }
    
    .faq-item:hover{
        border: solid 3px var(--secondary-color-dark-10);
    }
    
    .faq-item.active{
        border: solid 3px var(--secondary-color-dark-10);
    }
    
    .faq-question{
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    
    .faq-question h3{
        position: relative;
        display: inline-block;
        user-select: none;
        color: whitesmoke;
        font-family: var(--main-font);
        font-weight: 500;
        font-size: var(--margin-m);
        line-height: 1.5;
    }
    
    .faq-item h3::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -5px; 
        width: 0;
        height: 2px; 
        transition: width 0.3s ease; 
    }
    
    .faq-item.active h3::after {
        width: 100%; 
    }
    
    .faq-indicator{
        position: relative;
        width: 25px;
        height: 25px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .faq-indicator::before,
    .faq-indicator::after {
        content: '';
        position: absolute;
        width: 14px; 
        height: 2px; 
        background-color: #ffffff;
        transition: opacity 0.3s ease, transform 0.3s ease;
    }
    
    .faq-indicator::before {
        transform: rotate(0deg);
    }
    
    .faq-indicator::after {
        transform: rotate(90deg);
    }
    
    .faq-item.active .faq-indicator::after {
        opacity: 0;
        transform: rotate(90deg);
    }
    
    .faq-answer{
        overflow: hidden;
        max-height: 0;
    
        transition: max-height 0.5s ease, opacity 0.5s ease;
    }
    
    .faq-answer p{
        text-wrap: pretty;
        padding: 15px 0;
        padding-bottom: 0;
        font-size: calc(var(--margin-m) - 0.07rem);
    }
    
    .faq-item.active #faq-answer-1{
        max-height: 300px;
    }
    
    .faq-item.active #faq-answer-2{
        max-height: 620px;
    }
    
    .faq-item.active #faq-answer-3{
        max-height: 250px;
    }
    
    .faq-item.active #faq-answer-4{
        max-height: 160px;
    }
    
    .faq-item.active #faq-answer-5{
        max-height: 180px;
    }
    
    .faq-item.active #faq-answer-6{
        max-height: 130px;
    }

    .faq-answer-option-title h4{
        position: relative;
        display: inline-block;
        user-select: none;
        color: white;
        font-family: var(--main-font);
        font-weight: 500;
        font-size: var(--margin-sm);
    }
    
    .faq-answer-option-title h4::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0px; 
        width: 0;
        height: 1.5px; 
        background-color: rgba(255, 255, 255, 1);
        transition: width 0.3s ease; 
    }
    
    .faq-answer-option.active .faq-answer-option-title h4::after {
        width: 100%; 
    }

    .faq-answer-option-content p{
        font-family: var(--main-font);
        font-weight: 400;
        color: white;
        font-size: calc(var(--margin-m) - 0.1rem);
        line-height: 1.8;
    }
    
    
    .faq-item-spacer{
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: var(--margin-m);
    }
    
    .faq-item-spacer p{
        text-align: center;
        font-family: var(--main-font);
        font-size: calc(var(--margin-sm) - 0.05rem);
        color: whitesmoke;
        font-weight: 500;
    }
    
    .faq-item-spacer a{
        font-size: calc(var(--margin-sm) - 0.05rem);
        padding: 8px 25px;
    
        box-shadow: 0 10px 5px rgba(0, 0, 0, 0.5);
    }
    
    .faq-item-spacer a:hover{
        background-color: var(--secondary-color);
    }
    
    .faq-item-spacer a:active{
        box-shadow: 0 0px 4px rgba(0, 0, 0, 0.5);
        background-color: var(--secondary-color-dark-10);
    }
}
/*
@media screen and (max-width: 500px){
    .faq-container{
        width: 100%;
    }
    
    .faq-items-container{
        margin: 0 auto;
        width: 90%;
        display: flex;
        flex-direction: column;
        gap: 3vh;
    }
    
    .faq-title{
        text-align: center;
        width: fit-content;
        margin: 0 auto;
        margin-bottom: 1vh;
    }
    
    .faq-title h2{
        color: var(--secondary-color);
        font-family: var(--main-font);
        font-weight: 600;
        letter-spacing: 1px;
        font-size: calc(var(--margin-l) + 0.2rem);
        text-shadow: 0 0 10px black;
    }
    
    .faq-item{
        cursor: pointer;
        position: relative;
        border: solid 3px var(--secondary-color-light-10);
        padding: 5px 15px;
    
        display: flex;
        flex-direction: column;
    }
    
    .faq-item:hover{
        border: solid 3px var(--secondary-color-dark-10);
    }
    
    .faq-item.active{
        border: solid 3px var(--secondary-color-dark-10);
    }
    
    .faq-question{
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    
    .faq-question h3{
        position: relative;
        display: inline-block;
        user-select: none;
        color: whitesmoke;
        font-family: var(--main-font);
        font-weight: 500;
        font-size: calc(var(--margin-sm) + 0.05rem);
        line-height: 1.5;
        margin-right: 0;
        width: 90%;
    }
    
    .faq-item h3::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -5px; 
        width: 0;
        height: 2px; 
        transition: width 0.3s ease; 
    }
    
    .faq-item.active h3::after {
        width: 100%; 
    }
    
    .faq-indicator{
        position: relative;
        width: fit-content;
        width: 5vw;
        height: 42px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .faq-indicator::before,
    .faq-indicator::after {
        content: '';
        position: absolute;
        width: 14px; 
        height: 2px; 
        background-color: #ffffff;
        transition: opacity 0.3s ease, transform 0.3s ease;
    }
    
    .faq-indicator::before {
        transform: rotate(0deg);
    }
    
    .faq-indicator::after {
        transform: rotate(90deg);
    }
    
    .faq-item.active .faq-indicator::after {
        opacity: 0;
        transform: rotate(90deg);
    }
    
    .faq-answer{
        overflow: hidden;
        max-height: 0;
    
        transition: max-height 0.5s ease, opacity 0.5s ease;
    }
    
    .faq-answer p{
        font-size: var(--margin-sm);
    }
    
    .faq-item.active #faq-answer-1{
        max-height: 300px;
    }
    
    .faq-item.active #faq-answer-2{
        max-height: 550px;
    }
    
    .faq-item.active #faq-answer-3{
        max-height: 230px;
    }
    
    .faq-item.active #faq-answer-4{
        max-height: 150px;
    }
    
    .faq-item.active #faq-answer-5{
        max-height: 130px;
    }
    
    .faq-item.active #faq-answer-6{
        max-height: 140px;
    }

    .faq-answer-option-title h4{
        position: relative;
        display: inline-block;
        user-select: none;
        color: white;
        font-family: var(--main-font);
        font-weight: 500;
        font-size: var(--margin-sm);
    }
    
    .faq-answer-option-title h4::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -0px; 
        width: 0;
        height: 1.5px; 
        background-color: rgba(255, 255, 255, 1);
        transition: width 0.3s ease; 
    }
    
    .faq-answer-option.active .faq-answer-option-title h4::after {
        width: 100%; 
    }
    
    .faq-answer-option-content p{
        font-family: var(--main-font);
        font-weight: 400;
        color: white;
        font-size: var(--margin-sm);
        line-height: 1.8;
    }



    .faq-item-spacer{
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: var(--margin-l);
    }
    
    .faq-item-spacer p{
        font-family: var(--main-font);
        font-size: calc(var(--margin-xs) + 0.15rem);
        color: whitesmoke;
        font-weight: 500;
    }
    
    .faq-item-spacer a{
        font-size: calc(var(--margin-s));
        padding: 8px 15px;
    
        box-shadow: 0 10px 5px rgba(0, 0, 0, 0.5);
    }
    
    .faq-item-spacer a:hover{
        background-color: var(--secondary-color);
    }
    
    .faq-item-spacer a:active{
        box-shadow: 0 0px 4px rgba(0, 0, 0, 0.5);
        background-color: var(--secondary-color-dark-10);
    }
}

@media screen and (max-width: 375px){
    .faq-container{
        width: 100%;
    }
    
    .faq-items-container{
        margin: 0 auto;
        width: 90%;
        display: flex;
        flex-direction: column;
        gap: 3vh;
    }
    
    .faq-title{
        text-align: center;
        width: fit-content;
        margin: 0 auto;
        margin-bottom: 1vh;
    }
    
    .faq-title h2{
        color: var(--secondary-color);
        font-family: var(--main-font);
        font-weight: 600;
        letter-spacing: 1px;
        font-size: 5cqi;
        text-shadow: 0 0 10px black;
    }
    
    .faq-item{
        cursor: pointer;
        position: relative;
        border: solid 2px var(--secondary-color-light-10);
        padding: 4px 15px;
    
        display: flex;
        flex-direction: column;
    }
    
    .faq-item:hover{
        border: solid 2px var(--secondary-color-dark-10);
    }
    
    .faq-item.active{
        border: solid 2px var(--secondary-color-dark-10);
    }
    
    .faq-question{
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    
    .faq-question h3{
        position: relative;
        display: inline-block;
        user-select: none;
        color: whitesmoke;
        font-family: var(--main-font);
        font-weight: 500;
        font-size: calc(var(--margin-s));
        line-height: 1.5;
        margin-right: 0;
        width: 90%;
    }
    
    .faq-item h3::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -8px; 
        width: 0;
        height: 1.5px; 
        transition: width 0.3s ease; 
    }
    
    .faq-item.active h3::after {
        width: 100%; 
    }
    
    .faq-indicator{
        position: relative;
        width: fit-content;
        width: 5vw;
        height: 42px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .faq-indicator::before,
    .faq-indicator::after {
        content: '';
        position: absolute;
        width: 12px; 
        height: 2px; 
        background-color: #ffffff;
        transition: opacity 0.3s ease, transform 0.3s ease;
    }
    
    .faq-indicator::before {
        transform: rotate(0deg);
    }
    
    .faq-indicator::after {
        transform: rotate(90deg);
    }
    
    .faq-item.active .faq-indicator::after {
        opacity: 0;
        transform: rotate(90deg);
    }
    
    .faq-answer{
        overflow: hidden;
        max-height: 0;
    
        transition: max-height 0.5s ease, opacity 0.5s ease;
    }
    
    .faq-answer p{
        font-size: calc(var(--margin-s));
    }
    
    .faq-item.active #faq-answer-1{
        max-height: 300px;
    }
    
    .faq-item.active #faq-answer-2{
        max-height: 550px;
    }
    
    .faq-item.active #faq-answer-3{
        max-height: 230px;
    }
    
    .faq-item.active #faq-answer-4{
        max-height: 150px;
    }
    
    .faq-item.active #faq-answer-5{
        max-height: 130px;
    }
    
    .faq-item.active #faq-answer-6{
        max-height: 140px;
    }

    .faq-answer-option-title h4{
        position: relative;
        display: inline-block;
        user-select: none;
        color: white;
        font-family: var(--main-font);
        font-weight: 500;
        font-size: calc(var(--margin-s) - 0.05rem);
    }
    
    .faq-answer-option-title h4::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -0px; 
        width: 0;
        height: 1px; 
        background-color: rgba(255, 255, 255, 1);
        transition: width 0.3s ease; 
    }
    
    .faq-answer-option.active .faq-answer-option-title h4::after {
        width: 100%; 
    }
    
    .faq-answer-option-content p{
        font-family: var(--main-font);
        font-weight: 400;
        color: white;
        font-size: calc(var(--margin-s) - 0.05rem);
        line-height: 1.8;
    }



    .faq-item-spacer{
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: var(--margin-l);
        text-align: center;
    }
    
    .faq-item-spacer p{
        font-family: var(--main-font);
        font-size: calc(var(--margin-xs) + 0.15rem);
        color: whitesmoke;
        font-weight: 500;
    }
    
    .faq-item-spacer a{
        font-size: calc(var(--margin-s));
        padding: 6px 16px;
    
        box-shadow: 0 7px 3px rgba(0, 0, 0, 0.5);
    }
    
    .faq-item-spacer a:hover{
        background-color: var(--secondary-color);
    }
    
    .faq-item-spacer a:active{
        box-shadow: 0 0px 4px rgba(0, 0, 0, 0.5);
        background-color: var(--secondary-color-dark-10);
    }
}
    */