:root {
    --bg-color: #DBDBDB;
    --primary-color: #4D3053;
    --text-color: #333333;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    margin: 0;
    padding: 40px 20px;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.5);
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

h1 {
    font-family: 'DM Serif Display', serif;
    color: var(--primary-color);
    font-size: 3rem;
    margin-bottom: 40px;
    border-bottom: 2px solid var(--primary-color);
    display: inline-block;
}

h2 {
    font-family: 'DM Serif Display', serif;
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-top: 40px;
}

.back-link {
    display: block;
    margin-bottom: 30px;
    text-decoration: none;
    color: var(--primary-color);
    font-weight: bold;
    transition: transform 0.3s ease;
}

.back-link:hover {
    transform: translateX(-5px);
}

.legal-footer {
    margin-top: 50px;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Responsive */
@media screen and (max-width: 600px) {
    .legal-container {
        padding: 20px;
    }
    h1 {
        font-size: 2rem;
    }
}