#SixthPage {
    width: 100%;
    height: 49vw;
    background: url('/static/seller/images/SixthFuter.jpg');
    background-size: 100% 100%;
}

#Futer {
    margin-left: 30vw;
    margin-top: 6.3vw;
    display: inline-block;
    width: 68vw;
    height: 40vw;
}

#Futer #questionsul {
    height: 36vw;
    width: 64vw;
}

#Futer #questions ul li {
    color: black;
    font-family: "Montserrat", serif;
    font-size: 2vw;
    font-weight: 300;
    height: 5vw;
    align-items: center;
    display: flex;
    margin-bottom: 1vw;
    transition: transform 0.5s;
}

#Futer #questions li:hover {
    transform: scale(1.01);
    cursor: pointer;
}

.overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 100;
}

#answers {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
    background: white;
    padding: 30px;
    border-radius: 12px;
    width: 50vw;
    z-index: 100;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    font-family: "Montserrat", serif;
    font-weight: 400;
    color: rgb(81, 83, 75);

}


#answers h3 {
    margin-top: 0;
    font-size: 1.4em;
}

#answers ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#answers li {
    display: none;
    font-size: 1.3vw;
}

.close-btn {
    display: block;
    text-align: right;
    cursor: pointer;
    color: #777;
    font-weight: bold;
    font-size: 1.5vw;
    margin-top: -10px;
}

.close-btn:hover {
  color: #000;
}

#answers span {
    font-weight: 600;
}

@media (max-width: 767px) {
    #SixthPage {
        width: 100%;
        height: 51vw;
        background: url('/static/seller/images/SixthFuterPhone.jpg');
        background-size: 100% 100%;
    }

    #Futer {
        margin-left: 8vw;
        margin-top: 4.3vw;
    }

    #Futer #questions ul li {
        font-size: 2.5vw;
        height: 6vw;
    }

    #answers {
        width: 70%;
        min-height: 20%;
    }

    .close-btn {
        font-size: 5vw;
    }

    #answers li {
        font-size: 3vw;
    }
}