/* =========================================================
   GDPR POLICY PAGE — The Compliance System
   ========================================================= */

body {
  font-family: "Eras Light ITC", Arial, sans-serif;
  background: #f5f6fb;
  color: #333;
  margin: 0;
  padding: 0;
  overflow-y: auto;
  line-height: 1.6;
}

/* Sticky header */
.gdpr-header {
  position: sticky;
  top: 0;
  background: #2a2962;
  color: #fff;
  padding: 12px 24px;
  z-index: 100;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
.gdpr-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.gdpr-logo {
  height: 38px;
  width: auto;
}
.back-link {
  color: #fff;
  font-size: 0.95rem;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.15);
  padding: 6px 10px;
  border-radius: 6px;
  transition: background 0.2s;
}
.back-link:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* Main content */
.gdpr-container {
  max-width: 850px;
  margin: 30px auto 50px;
  background: #fff;
  padding: 40px 50px;
  border-radius: 14px;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.08);
}
h1 {
  font-size: 1.9rem;
  color: #2a2962;
  margin-bottom: 10px;
}
h2 {
  font-size: 1.25rem;
  color: #403c8d;
  margin-top: 1.6rem;
  border-left: 4px solid #6a5acd;
  padding-left: 8px;
}
ul {
  margin-left: 1.5rem;
}
a {
  color: #6a5acd;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* Footer */
footer {
  margin-top: 40px;
  border-top: 1px solid #eee;
  padding-top: 20px;
  font-size: 0.9rem;
  color: #666;
  text-align: center;
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 768px) {
  .gdpr-container {
    margin: 15px;
    padding: 25px 20px;
  }
  h1 {
    font-size: 1.6rem;
  }
  h2 {
    font-size: 1.1rem;
  }
  .gdpr-header {
    padding: 10px 16px;
  }
  .back-link {
    font-size: 0.85rem;
  }
}
