
.wrapper-legal {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.glass-legal-container {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 32px;
    padding: 60px;
    width: 100%;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}

.legal-header {
    text-align: center;
    margin-bottom: 100px;
    width: 100%;
    padding-left: 5px;
}

.legal-header h1 {
    font-size: 2.8rem;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 800;
    letter-spacing: -1px;
}

.legal-header p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    padding-top: 10px;
    border-top: 1px solid rgba(205, 179, 77, 0.2);
}

.legal-content {
    display: block;
    margin-top: 60px;
}

.legal-content section {
    margin-bottom: 50px;
}

.legal-content h2 {
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.legal-content p {
    color: #ccc;
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 15px;
}

.legal-content ul {
    list-style: none;
    padding-left: 0;
}

.legal-content ul li {
    color: #ccc;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.legal-content ul li::before {
    content: "•";
    color: var(--gold);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.legal-footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #aaa;
}

@media (max-width: 768px) {
    .glass-legal-container {
        padding: 30px;
    }
    .legal-header h1 {
        font-size: 1.8rem;
    }
}