/*  privacy.css
    Purpose        Stand-alone “Privacy Policy” page:
                     • container sizing / typography
                     • link colour overrides
                     • footer styling
                     • centred, readable max-width layout

    Load-order     After global theme variables and before the generic footer JS (if any):
                     <link rel="stylesheet" href="css/privacy.css">


    Last updated   31 Jul 2025
*/

/* Privacy Policy Section */
.privacy-container {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    text-align: justify;
    line-height: 1.6;
}

h1 {
    margin-top: 50px;
}

.privacy-container h1, .privacy-container h2 {
    color: inherit;
}

.privacy-container a {
    color: #4ea1d3; /* Same light blue used for other body links */
    text-decoration: none;
}


.privacy-container p {
    margin-bottom: 20px;
}

/* Footer */
.footer {
    text-align: center;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    position: relative;
    bottom: 0;
    width: 100%;
    font-size: 14px;
}
