body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #0f0f0f, #1c1c1c);
    color: white;
}

/* SECTION */
.lux-legal {
    padding: 100px 20px;
}

.container {
    max-width: 900px;
    margin: auto;
}

/* HEADER */
.header {
    text-align: center;
    margin-bottom: 40px;
}

.header h1 {
    font-family: 'Playfair Display', serif;
    color: #c6a75e;
}

.header p {
    color: #aaa;
}

/* TABS */
.tabs {
    position: relative;
    display: flex;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    padding: 5px;
    margin-bottom: 30px;
}

.tab {
    flex: 1;
    text-align: center;
    padding: 12px;
    cursor: pointer;
    z-index: 2;
}

/* SLIDER */
.tab-slider {
    position: absolute;
    height: 100%;
    width: 33.3%;
    background: #c6a75e;
    border-radius: 50px;
    transition: 0.4s;
}

/* CONTENT */
.content-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: 20px;
}

.content {
    display: none;
    animation: fade 0.5s ease;
}

.content.active {
    display: block;
}

h2 {
    color: #c6a75e;
}

ul {
    padding-left: 20px;
}

/* FAQ */
.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 0;
}

.faq-q {
    cursor: pointer;
    font-weight: 500;
}

.faq-a {
    display: none;
    color: #bbb;
    margin-top: 5px;
}

/* ANIMATION */
@keyframes fade {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}