/* Basic Reset and Typography */
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  margin: 0;
  background-color: #f9f9f9;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

/* Headings */
h1 {
  color: #1a1a1a;
  border-bottom: 2px solid #eee;
  padding-bottom: 10px;
  margin-top: 0;
}

h2 {
  color: #2c3e50;
  margin-top: 30px;
  font-size: 1.5em;
}

/* Table Styling (Crucial for clarity) */
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
  font-size: 0.9em;
}

th,
td {
  border: 1px solid #ddd;
  padding: 12px 8px;
  text-align: left;
}

th {
  background-color: #e9e9e9;
  color: #333;
  font-weight: bold;
}

/* Highlight the Legal Basis column for GDPR focus */
td:nth-child(4) {
  font-weight: bold;
  color: #c0392b;
  /* A color to draw attention to the Consent requirement */
}

td.legal-basis {
  font-weight: bold;
  color: #27ae60;
}

/* Lists and Paragraphs */
ul {
  padding-left: 20px;
}

p {
  margin-bottom: 15px;
}

/* Contact Section */
.contact-info {
  background-color: #ecf0f1;
  padding: 15px;
  border-radius: 4px;
  margin-top: 30px;
}
