/* --- Privacy Policy Specific Styles --- */
body {
    font-family: "Lato", sans-serif;
    margin: 0;
    padding: 40px 20px;
    background-color: #ffffff;
    color: #444;
    line-height: 1.8;
}

/* Container simulation to match your .job-container style */
body {
    max-width: 800px;
    margin: 60px auto;
    background: #f9f9f9;
    padding: 60px;
    border-radius: 20px;
    border: 1px solid #eee;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Header Styling */
h1 {
    font-size: 3rem;
    color: #385a42;
    margin-bottom: 10px;
    text-align: center;
}

/* Last Updated text */
h1+p {
    text-align: center;
    color: #888;
    font-style: italic;
    margin-bottom: 40px;
    font-size: 0.9rem;
}

/* Section Headings */
h2 {
    font-size: 1.8rem;
    color: #385a42;
    border-bottom: 2px solid #385a42;
    display: inline-block;
    margin-top: 40px;
    margin-bottom: 20px;
}

/* Content Text */
p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

/* Lists Styling */
ul {
    padding-left: 20px;
    margin-bottom: 30px;
}

li {
    margin-bottom: 12px;
    font-size: 1.1rem;
}

li strong {
    color: #385a42;
}

/* Footer / Copyright */
p:last-of-type {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    font-size: 0.9rem;
    color: #888;
    text-align: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    body {
        margin: 20px;
        padding: 30px;
    }

    h1 {
        font-size: 2.2rem;
    }
}