/* styles.css */

body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

header {
    background-color: #0073e6;
    color: white;
    padding: 20px;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 2em;
}

header p {
    margin: 0;
    font-size: 1.2em;
}

main {
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

main h2 {
    color: #0073e6;
}

main p {
    line-height: 1.6;
}

a {
    color: #0073e6;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

#privacy-statement-container {
    display: flex;
    justify-content: center; /* Center the content horizontally */
}

#privacy-statement {
    width: 100%;
    max-width: calc(100% - 60px); /* Adjust width to account for margins */
    padding-left: 30px;
    padding-right: 30px;
    padding-top:30px;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #3450a3 !important; /* Blue background color */
    padding: 12px;
    padding-top: 14px;
    width: 99%; /* Ensure it spans across the top */
    position: fixed; /* Fix it to the top */
    top: 0;
    left: 0;
}

.home-link {
    text-decoration: none;
}

.logo {
    height: 32px; /* Adjust as needed */
}

#privacy-statement-container {
    margin-top: 30px; /* Adjust to create space for the fixed header */
}

.centered-heading {
    text-align: center;
    color: #333; /* Heading text color */
}





