/* style.css - For your legal pages */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    margin: 0;
    padding: 20px;
}

.legal-container {
    max-width: 800px;
    margin: 40px auto;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

h1 {
    font-size: 28px;
    color: #000;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

h2 {
    font-size: 22px;
    color: #111;
    margin-top: 30px;
}

p, ul {
    font-size: 16px;
    margin-bottom: 15px;
}

.back-link {
    display: inline-block;
    margin-top: 30px;
    font-size: 16px;
    color: #007aff;
    text-decoration: none;
    font-weight: 500;
}

.back-link:hover {
    text-decoration: underline;
}