/* Global Reset and Base Styles */
* {
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  color: #222;
  background-color: #f9f9f9;
}

/* Typography */
h1, h2, h3 {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.2;
  font-weight: 600;
  color: #2c3e50;
}

h1 {
  font-size: 2em;
  margin-bottom: 0.5em;
}

h2 {
  font-size: 1.5em;
  margin-top: 1.5em;
}

h3 {
  font-size: 1.2em;
  margin-top: 1.2em;
}

p, ul, li {
  font-size: 1em;
  margin-bottom: 1em;
}

ul {
  padding-left: 1.5em;
}

a {
  color: #0077cc;
  text-decoration: none;
  transition: all 0.2s ease;
}

a:hover {
  text-decoration: underline;
}

/* Container for Privacy/Terms Pages */
.container {
  max-width: 960px;
  margin: 40px auto;
  padding: 40px;
  background-color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
}