body {
    background-color: #030712; /* brand-dark */
    background-image: 
        linear-gradient(to right, rgba(3, 7, 18, 1) 0%, rgba(3, 7, 18, 0.9) 40%, rgba(3, 7, 18, 0) 70%),
        url('../images/BG.webp?v=7');
    background-size: auto, 100% auto;
    background-position: center, top center;
    background-repeat: no-repeat, no-repeat;
    color: #ffffff;
    overflow-x: hidden;
}

/* Glassmorphism utility */
.glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.glass-heavy {
    background: rgba(14, 21, 38, 0.8);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.glass-input {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.3s ease;
}

.glass-input:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: #0070F3;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 112, 243, 0.2);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #030712;
}
::-webkit-scrollbar-thumb {
    background: #1f2937;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #374151;
}

/* FAQ Accordion */
.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.faq-item.active .faq-content {
    max-height: 500px; /* Should be enough for any answer */
    opacity: 1;
}

.faq-item .chevron {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .chevron {
    transform: rotate(180deg);
}

.faq-toggle span {
    transition: all 0.3s ease;
}

.faq-item.active .faq-toggle span {
    filter: brightness(1.2);
    /* Optional: can add a glow or change colors when active if desired */
}

