/* General Page Styling */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

/* Container to keep text from stretching too wide */
.policy-container {
    max-width: 800px;
    width: 90%;
    margin: 60px 0;
    padding: 40px;
    background: #fff;
    /* Optional: adds a very subtle border like a sheet of paper */
    border: 1px solid #eee;
    border-radius: 8px;
}

/* Typography */
h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.last-updated {
    font-style: italic;
    color: #777;
    margin-bottom: 2rem;
    display: block;
    border-bottom: 2px solid #f4f4f4;
    padding-bottom: 20px;
}

h3 {
    margin-top: 2rem;
    font-size: 1.25rem;
    color: #1a1a1a;
    border-left: 4px solid #333; /* Adds a professional accent line */
    padding-left: 15px;
}

p {
    margin-bottom: 1.2rem;
    color: #444;
}

/* Back Link styling */
.back-link {
    display: inline-block;
    margin-bottom: 20px;
    text-decoration: none;
    color: #007bff;
    font-weight: 500;
}

.back-link:hover {
    text-decoration: underline;
}