/* ============================= */
/* ---- Base Styles (unchanged) */
/* ============================= */
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #fff;
  color: #222;
}

.privacy-container {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
  background: #fff;
}

/* ============================= */
/* -------- Header Styling ------ */
/* ============================= */
.privacy-header {
  text-align: center;
  border-top: 5px solid #d6b16a;
  padding-bottom: 30px;
  position: relative;
  margin-top: 20px; /* Added gap above header */
}

.privacy-header h1 {
  font-size: 32px;
  color: #0a2c50;
  margin-bottom: 10px;
}

.updated-date {
  color: #555;
  font-size: 14px;
  margin-bottom: 10px;
}

/* ============================= */
/* -------- Navigation Buttons -- */
/* ============================= */
.nav-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 900px;
  margin: 30px auto 20px; /* Increased top margin for spacing from yellow line */
  padding: 0 20px;
}

.nav-button {
  font-size: 14px;
  background-color: #f0f0f0;
  padding: 8px 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  text-decoration: none;
  color: #0a2c50;
  transition: all 0.3s ease;
}

.nav-button:hover {
  background-color: #0a2c50;
  color: white;
  border-color: #0a2c50;
}

/* ============================= */
/* -------- Content Styling ------ */
/* ============================= */
.privacy-content {
  word-break: break-word;
  hyphens: auto;
}

.privacy-content h2 {
  font-size: 22px;
  margin-top: 30px;
  color: #0a2c50;
}

.privacy-content p,
.privacy-content address {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 15px;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

address {
  font-style: normal;
}

.privacy-content a {
  color: #0a2c50;
  text-decoration: underline;
}

/* ============================= */
/* -------- Footer Styling ------ */
/* ============================= */
.privacy-footer {
  width: 100%;
  background-color: #222;
  padding: 20px 0;
  font-family: 'Calibri', sans-serif;
  font-size: 14px;
  color: #999;
  margin-top: 60px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  text-align: center;
}

.privacy-footer .footer-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.privacy-footer p {
  margin: 0;
}

/* ============================= */
/* --------- Cookie Banner ------ */
/* ============================= */
#cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background-color: #222;
  color: #fff;
  padding: 16px 24px;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  z-index: 9999;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
