.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(6px);
    padding: 0px 0;
    transition: all 0.3s ease-in-out;
}

/* When scrolling */
.nav-overlay.scrolled {
    background: rgba(0, 0, 0, 0.85);
    padding: 5px 0;
}
body {
    font-family: 'Poppins', sans-serif;
    background-image: url("/web/jakarta.faces.resource/images/hero.jpg.xhtml");
    margin: 0;
    padding: 0;
    color: #333;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
}

.faq-container {
    flex: 1;
    overflow-y: auto;
    max-width: 900px;
    margin: 60px auto;
    padding: 60px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: left;
    max-height: 400px;
    font-family: "Inter", sans-serif;
}

.faq-title {
    text-align: left;
    font-size: 36px;
    margin-bottom: 30px;
    font-weight: 600;
    color: #000000;
}

.category-title {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.3);
    border-bottom: 2px solid #ddd;
    padding-bottom: 10px;
}

.faq-item {
    border-bottom: 1px solid #ddd;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.faq-question {
    font-size: 18px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
    font-weight: bold;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 24px;
    transition: transform 0.3s ease;
    background: #6c63ff;
    font-weight: bold;
    color: white;
    border-radius: 50%;
    height: 30px;
    width: 30px;
    text-align: center;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.4s ease;
    margin-top: 10px;
    font-size: 16px;
    color: #555;
}

.faq-item.active .faq-answer {
    max-height: 400px;
    opacity: 1;
}
