/**
 * HitNet - Policy Pages Styling
 * Consistent styling for all policy pages (terms, privacy, cookies, etc.)
 */

/* Reset and Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Libre Franklin', sans-serif;
  color: #333;
  background-color: #fff;
  line-height: 1.6;
  padding: 20px;
}

/* Container */
.policy-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* Back Link */
.back-link {
  display: inline-block;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 30px;
  transition: color 0.3s ease;
}

.back-link:hover {
  color: #ff00fb;
  text-decoration: underline;
}

/* Typography */
h1 {
  font-size: 32px;
  font-weight: 700;
  color: #000;
  margin-bottom: 20px;
  line-height: 1.2;
}

h2 {
  font-size: 22px;
  font-weight: 700;
  color: #000;
  margin-top: 40px;
  margin-bottom: 15px;
  line-height: 1.3;
}

p {
  font-size: 16px;
  color: #333;
  margin-bottom: 15px;
  text-align: left;
}

/* Lists */
ul {
  margin: 15px 0 15px 20px;
  padding: 0;
}

ul li {
  font-size: 16px;
  color: #333;
  margin-bottom: 8px;
  line-height: 1.6;
  list-style-type: disc;
}

/* Links */
a {
  color: #333;
  text-decoration: underline;
  transition: color 0.3s ease;
}

a:hover {
  color: #ff00fb;
}

strong {
  font-weight: 700;
}

/* Last Updated */
.last-updated {
  font-size: 14px;
  color: #777;
  text-align: center;
  margin-top: 60px;
  font-style: italic;
}

/* Responsive */
@media (max-width: 600px) {
  body {
    padding: 10px;
  }

  .policy-container {
    padding: 20px 10px;
  }

  h1 {
    font-size: 26px;
  }

  h2 {
    font-size: 20px;
    margin-top: 30px;
  }

  p, ul li {
    font-size: 15px;
  }
}
