:root {
  --primary-color: #003457;
  --secondary-color: #e8a200;
  --white-color: #ffffff;
  --dark-gray-color: #333333;
  --light-gray-color: #f5f5f5;
}

body {
  font-family: "Roboto", sans-serif;
  background-color: var(--white-color);
  color: var(--dark-gray-color);
  margin: 0;
  padding: 0;
}

.header {
  background-color: var(--primary-color);
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-text-container {
  display: flex;
  align-items: center;
  color: var(--primary-color);
  font-size: 1.8rem;
  font-weight: bold;
  background-color: var(--white-color);
  padding: 5px 10px;
  border-radius: 5px;
}

.logo-text-container img {
  height: 40px;
  margin-right: 10px;
}

.privacy-policy-container {
  max-width: 800px;
  margin: 40px auto;
  padding: 20px;
  background-color: var(--light-gray-color);
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.privacy-policy h1 {
  color: var(--primary-color);
  font-size: 28px;
  margin-bottom: 20px;
  text-align: center;
}

.privacy-policy h2 {
  color: var(--secondary-color);
  font-size: 22px;
  margin-top: 20px;
  margin-bottom: 10px;
}

.privacy-policy p,
.privacy-policy ul {
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark-gray-color);
  margin-bottom: 15px;
}

.privacy-policy ul {
  padding-left: 20px;
}

.privacy-policy ul li {
  margin-bottom: 8px;
}

.privacy-policy a {
  color: var(--secondary-color);
  text-decoration: none;
}

.privacy-policy a:hover {
  text-decoration: underline;
}

.footer {
  background-color: var(--primary-color);
  color: var(--white-color);
  text-align: center;
  padding: 15px 0;
  font-size: 14px;
  margin-top: 40px;
  border-top: 1px solid var(--light-gray-color);
}

/* Add this to the existing privacy policy CSS */

.page-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh; /* Ensures the page takes full viewport height */
}

.footer {
  margin-top: auto; /* Pushes the footer to the bottom of the page */
}
:root {
  --primary-color: #003457;
  --secondary-color: #e8a200;
  --white-color: #ffffff;
  --dark-gray-color: #333333;
  --light-gray-color: #f5f5f5;
}

html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
  color: var(--dark-gray-color);
}

.page-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh; /* Ensures the page container spans the full viewport height */
}

.header {
  background-color: var(--primary-color);
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-text-container {
  display: flex;
  align-items: center;
  color: var(--primary-color);
  font-size: 1.8rem;
  font-weight: bold;
  background-color: var(--white-color);
  padding: 5px 10px;
  border-radius: 5px;
}

.logo-text-container img {
  height: 40px;
  margin-right: 10px;
}

.privacy-policy-container {
  flex: 1; /* Allows the main content to take up remaining space */
  max-width: 800px;
  margin: 40px auto;
  padding: 20px;
  background-color: var(--light-gray-color);
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.privacy-policy h1 {
  color: var(--primary-color);
  font-size: 28px;
  margin-bottom: 20px;
  text-align: center;
}

.privacy-policy h2 {
  color: var(--primary-color);
  font-size: 22px;
  margin-top: 20px;
  margin-bottom: 10px;
}

.privacy-policy p,
.privacy-policy ul {
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark-gray-color);
  margin-bottom: 15px;
}

.privacy-policy ul {
  padding-left: 20px;
}

.privacy-policy ul li {
  margin-bottom: 8px;
}

.privacy-policy a {
  color: var(--secondary-color);
  text-decoration: none;
}

.privacy-policy a:hover {
  text-decoration: underline;
}

.footer {
  background-color: var(--primary-color);
  color: var(--white-color);
  text-align: center;
  padding: 15px 0;
  font-size: 14px;
  border-top: 1px solid var(--light-gray-color);
  margin-top: auto; /* Pushes the footer to the bottom of the page */
}
