#faqcontainer {
    position: absolute;
    top: 15%; /* Adjust positioning */
    left: 2.65%; /* Move it fully to the left */
    width: 31%; /* Adjust width to fit the left section */
    padding: 0.4vw;
    visibility: hidden;
}

.faq-item {
    margin-bottom: 0.75vw;
    border-radius: 0.5vw;
    background: #20222c; /* Match theme */
    box-shadow: 8px 8px 20px rgba(0, 0, 0, 0.6),
                -8px -8px 20px rgba(0, 0, 0, 0.4);
    background-image: radial-gradient(circle, #1b1c23 0.1vw, transparent 0.1vw);
    background-size: 15px 15px;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.2vw;
    font-weight: 500;
    padding: 1.5vw;
    text-align: left;
    font-family: monospace;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease-in-out;
}

.faq-question:hover {
    background: rgba(158, 152, 152, 0.1);
}

.faq-answer {
    display: none;
    padding: 1.5vw;
    color: #ddd;
    font-family: monospace;
    text-align: left;
    font-size: 0.9vw;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.arrow {
    transition: transform 0.3s ease-in-out;
}

/* Rotate arrow when active */
.faq-question.active .arrow {
    transform: rotate(180deg);
}

.arrow_down {
    height: 1vw;
    width: 1vw;
}
