body {
    color: #0916CC;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
}

h2 {
    font-size: 110%;
    font-weight: bold;
}

a {
    color: #0C345D;
}

a:visited {
    color: #0C345D;
}

a:hover {
    color: #AA2531;
}
/* Basic Reset (optional, but often helpful) */
body, h1, p, img {
    margin: 0;
    padding: 0;
    border: 0;
}

body {
    font-family: sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4; /* Example background color */
    color: #333; /* Example text color */
}

header {
    background-color: #333; /* Example header background color */
    color: #fff; /* Example header text color */
    padding: 20px;
    text-align: center;
}
.logo-background {
    background-color: white;
    display:flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.logo-container {
    display: inline-block;
   /* margin-bottom: 10px;        */
}

.logo {
    max-width: none; /* Adjust as needed */
    height: auto;
    vertical-align: middle; /* Align logo with company name if they are on the same line */
    display: block;

}

.company-name {
    font-size: 2em; /* Example font size */
    margin-top: 10px;
    text-align: center;
}

.contact-info {
    background-color: #fff; /* Example contact info background color */
    padding: 20px;
    margin: 20px auto;
    max-width: 600px; /* Example maximum width */
    border-radius: 5px; /* Example rounded corners */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Example shadow */
    text-align: center;
}

.address {
    margin-bottom: 10px;
}

.phone {
    font-weight: bold;
}

.priv-policy {
    background-color: #fff; /* Example contact info background color */
    padding: 20px;
    margin: 20px auto;
    max-width: 600px; /* Example maximum width */
    border-radius: 5px; /* Example rounded corners */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Example shadow */
    text-align: left;
}
.priv-policy-title {
    font-size: 125%;
    font-weight: bolder;
}

footer {
    background-color: #333; /* Example footer background color */
    color: #fff; /* Example footer text color */
    text-align: center;
    padding: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
}