:root {
  --red: #c40233;
  --yellow: #ffd300;
  --green: #009f6b;
  --blue: #0087bd;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Common body styles */
body {
  background-color: white;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
}

/* Index page specific body styles */
body.index-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 20px;
}

/* TOS and Privacy page specific body styles */
body.legal-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* Logo styles */
.logo {
  margin-bottom: 30px;
}

.logo-container {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.logo-container a {
  display: inline-block;
  text-decoration: none;
}

/* Text styles */
.text {
  color: #333;
  font-size: 16px;
  margin-bottom: 15px;
}

.text:last-child {
  margin-bottom: 0;
}

/* Typography */
h1 {
  text-align: left;
  font-size: 32px;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
}

h2 {
  font-size: 24px;
  font-weight: 600;
  color: #333;
  margin-top: 30px;
  margin-bottom: 15px;
}

p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 15px;
}

.effective-date {
  font-size: 14px;
  color: #777;
  margin-bottom: 30px;
  font-style: italic;
}

ul {
  margin-left: 20px;
  margin-bottom: 15px;
}

li {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 10px;
}

.section-number {
  font-weight: 600;
  color: #333;
}

/* Links */
a {
  color: var(--red);
  text-decoration: none;
  font-weight: 600;
}

a[href^="mailto:"] {
  color: var(--blue);
}
