/* Base Styles */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #fff;
  color: #333;
  line-height: 1.6;
  font-size: 18px;
  text-align: left; /* Ensure all text is left aligned */
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

/* Header */
.header h1 {
  font-size: 36px;
  margin-bottom: 5px;
  text-align: left; /* Left aligned header */
}

.last-updated {
  font-size: 16px;
  color: #777;
  margin-bottom: 30px;
  text-align: left;
}

/* Section Headings */
h2 {
  font-size: 28px;
  color: #000;
  margin-top: 40px;
  margin-bottom: 15px;
  text-align: left;
}

h3 {
  font-size: 22px;
  color: #000;
  margin-top: 30px;
  margin-bottom: 10px;
  text-align: left;
}

/* Paragraphs & Lists */
p {
  margin-bottom: 15px;
  text-align: left;
}

ul {
  margin: 0 0 15px 20px;
  padding: 0;
  text-align: left;
}

li {
  margin-bottom: 8px;
}

/* Links */
a {
  color: #0077b5;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Optional: Section Styling */
.section {
  margin-bottom: 30px;
}

/* GDPR Section (Optional) */
.gdpr ul {
  list-style-type: disc;
}