/* --- Basic Styles for Legal Pages --- */
:root {
    --secondary-color: #f0f2f5;
    --text-color: #212529;
    --border-color: #dee2e6;
    --border-radius: 12px;
    --box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}

body {
    font-family: "Inter", sans-serif;
    margin: 0;
    padding: 20px;
    background-color: var(--secondary-color);
    color: var(--text-color);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    box-sizing: border-box;
}

.legal-container {
    width: 100%;
    max-width: 800px;
    background-color: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 40px;
    box-sizing: border-box;
}

h1 {
    font-size: 28px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
    margin-bottom: 20px;
}

p,
li {
    font-size: 16px;
    line-height: 1.8;
}

a {
    color: #0a58ca;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.home-link {
    display: inline-block;
    margin-top: 30px;
    font-weight: bold;
}
