* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    background: #0a0a0a;
    color: #f0eded;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

.legal-header {
    background: #111;
    border-bottom: 1px solid #222;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.legal-back {
    color: #888;
    text-decoration: none;
    font-size: 14px;
    padding: 6px 14px;
    border: 1px solid #333;
    border-radius: 6px;
    transition: all 0.2s;
}
.legal-back:hover {
    border-color: #D4A574;
    color: #D4A574;
}

.legal-logo {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: #D4A574;
    letter-spacing: 4px;
}

.legal-content {
    max-width: 780px;
    margin: 0 auto;
    padding: 60px 24px;
}

.legal-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    color: #D4A574;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.legal-date {
    color: #666;
    font-size: 13px;
    margin-bottom: 48px;
    font-style: italic;
}

.legal-content section {
    margin-bottom: 32px;
}

.legal-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: #D4A574;
    margin-bottom: 14px;
    margin-top: 16px;
    letter-spacing: 0.3px;
}

.legal-content h3 {
    font-size: 15px;
    color: #f0eded;
    margin: 18px 0 10px;
    font-weight: 600;
}

.legal-content p {
    color: #ccc;
    font-size: 15px;
    margin-bottom: 12px;
}

.legal-content ul {
    color: #ccc;
    font-size: 15px;
    margin: 12px 0 12px 24px;
}

.legal-content li {
    margin-bottom: 8px;
}

.legal-content strong {
    color: #f0eded;
    font-weight: 600;
}

.legal-content a {
    color: #D4A574;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}
.legal-content a:hover {
    border-bottom-color: #D4A574;
}

.legal-footer {
    border-top: 1px solid #222;
    padding: 30px 24px;
    text-align: center;
    color: #666;
    font-size: 13px;
    margin-top: 60px;
}

.legal-footer a {
    color: #888;
    text-decoration: none;
    margin: 0 4px;
}
.legal-footer a:hover {
    color: #D4A574;
}

@media (max-width: 600px) {
    .legal-content {
        padding: 40px 20px;
    }
    .legal-content h1 {
        font-size: 30px;
    }
    .legal-content h2 {
        font-size: 19px;
    }
}
