@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');


*{
    scroll-behavior: smooth;
    font-family:"Inter", sans-serif;
    text-decoration: none;
}



.onglets .faq{
    font-weight: 700;
}
  


section{
    margin: 60px 0;
    min-height: 100vh;
}

section::before{
    content: "";
    background: url('/images/Lockystar.svg') no-repeat center center;
    position: fixed;
    background-size: contain; 
    width: 680px;
    height: 680px;
    margin-top: 50px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.05; 
    z-index: -1; 
    filter: grayscale(100%);
}

section h2{
    color: #1F2937;
    font-size: 24px;
    font-weight: 700;
}

section .top_page{
    margin: 0 10%;
    line-height: 24px;
}

section .top_page p{
    margin-top: -5px;
    color: #1F2937;
    font-size: 16px;
    font-weight: 500;
}

section .top_page a{
    border-bottom: 2px solid #6F1999;
    color: #6F1999;
    font-size: 16px;
    font-weight: 500;
}

.accordeon{
    margin: 0 10%;
    margin-top: 50px;
}

.accordeon .question{
    position: relative;
    padding: 10px 0px;
    cursor: pointer;
    border-top: 1px solid #ccc;
}

.accordeon .question h4{
    color: #1F2937;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
}

.accordeon .question_answer img{
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.2s;
    width: 15px;
}

.accordeon .question_answer.show img{
    transform: translateY(-50%) rotate(180deg);
}

.accordeon .question_answer .answer{
    height: 0;
    overflow: hidden;
    transition: height 0.5s ease, opacity 0.3s ease; 
    opacity: 0;
}

.accordeon .question_answer .answer p{
    color: #1F2937;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
}

.accordeon .question_answer.show .answer{
    color: #1F2937;
    height: auto;
    width: 72%;
    text-align: justify; 
    opacity: 1;
    margin-top: -20px; 
}

.accordeon .last_question_answer{
    border-bottom: 1px solid #ccc;
}

footer{
    background-color:#D1D5DB;
    height: 52px;
    width: 100%;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
  
.footer_container{
    display: flex;
    gap: 40px
}
  
footer a{
    font-size: 14px;
    font-weight: 500;
    color: black;
}

@media screen and (max-width: 850px) {
    section{
        margin: 50px 0;
    }

 
    .accordeon{
        margin-top: 50px;
    }

    .accordeon .question_answer.show .answer{
        width: 85%;
    }
}

@media screen and (max-width: 730px) {
    footer{
        height: 90px;
        justify-content: flex-start;
    }
      
    .footer_container{
        flex-direction: column;    
        gap: 10px;
        margin-left: 30px;
    }
    
    footer a{
        font-size: 10px;
    }
}

@media screen and (max-width: 710px) {
    section{
        min-height: 610px;
    }

    section h2{
        text-align: center;
    }

    section .top_page{
        text-align: center;
        margin: 0 6%;
    }

    .accordeon{
        margin: 0 ;
        margin-top: 50px;
        border-bottom: 1px solid #ccc;
    }

    .accordeon .question{
        padding: 1px;
        border-top: 0px solid #ccc;
    }

    .accordeon .question::before {
        content: '';
        position: absolute;
        top: 0;
        left: -4.5%; 
        width: 100vw;
        border-top: 1px solid #ccc;
    }

    .accordeon .last_question_answer{
        border-bottom: 0px solid #ccc;
    }

    .accordeon .question h4{
        font-size: 14px;
    }

    .accordeon .question_answer{
        margin: 0 4%;
    }

    .accordeon .question_answer.show .answer{
        width: 100%;
        text-align: start; 
    }
}

@media screen and (max-width: 600px) {
    section::before {
        display: block;
        position: fixed;
        background-size: 108% 50%;
        margin: 0;
        top: auto;
        left: auto;
        bottom: 0;
        right: 0;
        width: 100%;
        height: 100%;
        opacity: 0.05; 
        transform: translate(36%, 45%);
        filter: grayscale(100%);
    }
}