/* FILE: styles/privacy-policy.css */

/* Main Section Styling */
main.container {
    padding: 80px 20px;
    margin-top: 100px; /* To avoid overlap with fixed header */
}

/* Header Styling */
main h1 {
    font-size: 36px;
    color: var(--secondary-color);
    margin-bottom: 20px;
    text-align: center;
}

main h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Paragraph Styling */
main p {
    font-size: 18px;
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.8;
}

/* Link Styling */
main a {
    color: var(--primary-color);
    text-decoration: underline;
}

main a:hover {
    color: var(--secondary-color);
}

/* Footer Styling */
footer.footer {
    background-color: var(--light-bg);
    padding: 20px 0;
    text-align: center;
}

footer.footer p {
    font-size: 14px;
    color: var(--text-color);
}

footer.footer .footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

footer.footer .footer-link-item a {
    color: var(--primary-color);
    text-decoration: none;
}

footer.footer .footer-link-item a:hover {
    color: var(--secondary-color);
}