/* General Page Styling */
body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.7;
    color: #333;
    background-color: #f4f7f6;
    margin: 0;
    padding: 40px 20px;
}

.container {
    max-width: 750px;
    margin: 0 auto;
    background: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

/* Typography */
h1 {
    font-size: 2.2rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

h2 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-top: 2rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 8px;
}

.last-updated {
    color: #666;
    font-style: italic;
    margin-bottom: 30px;
}

/* Links */
.back-link {
    display: inline-block;
    text-decoration: none;
    color: #555;
    font-weight: 600;
    margin-bottom: 30px;
    transition: color 0.2s;
}

.back-link:hover {
    color: #000;
}

.contact-email {
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
}

/* Divider */
hr {
    border: 0;
    height: 1px;
    background: #eee;
    margin: 40px 0;
}

/* Add this to the bottom of styleprivacy.css */
ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

li {
    margin-bottom: 10px;
}