/* ================= GENERAL ================= */

header {
    background: linear-gradient(135deg, #99a5b0 0%, #f9c9e0 100%);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

/* Old page nav only — do not affect site chrome */
.privacy-page nav,
.legacy-content > nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #000;
    margin-right: 3rem;
}

.logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

nav a {
  color: #000;
  text-decoration: none;
  font-weight: 500;
}

nav a:hover {
  color: #444;   /* subtle hover effect */
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f4f6f8;
  color: #333;
  line-height: 1.7;
}

/* ================= HEADER ================= */

.policy-header {
  background: linear-gradient(135deg, #b46b7d, #f9c9e0);
  padding: 60px 20px;
  text-align: center;
  color: white;
}

.policy-header h1 {
  margin: 0;
  font-size: 36px;
}

.policy-header p {
  margin-top: 10px;
  font-size: 14px;
}

/* ================= CONTENT ================= */

.policy-container {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
}

.policy-container h2 {
  margin-top: 40px;
  color: #b46b7d;
}

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

.policy-container a {
  color: #b46b7d;
  text-decoration: none;
}

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

/* ================= FOOTER ================= */

.policy-footer {
  background: #2d2d2d;
  color: white;
  text-align: center;
  padding: 20px;
  font-size: 14px;
  margin-top: 60px;
}