/* Shared layout for Privacy, Terms, and Contact pages */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: #252a32;
  font-family: Lato, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  background-color: #fff;
}

a {
  color: #252a32;
}

a:hover {
  text-decoration: underline;
}

.subpage {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

.subpage-header {
  text-align: center;
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid #e8e8e8;
}

.subpage-header h1 {
  margin: 0 0 12px;
  font-size: 2.25rem;
  font-weight: 700;
  color: #252a32;
}

.subpage-date {
  margin: 0;
  font-size: 0.95rem;
  color: #7b7b7b;
}

.subpage-content h2 {
  margin: 36px 0 16px;
  font-size: 1.35rem;
  font-weight: 700;
  color: #252a32;
}

.subpage-content p {
  margin: 0 0 16px;
}

.subpage-content ul {
  margin: 0 0 16px;
  padding-left: 24px;
}

.subpage-content li {
  margin-bottom: 12px;
}

.subpage-content li strong {
  display: block;
  margin-bottom: 4px;
}

.subpage-info-list {
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
}

.subpage-info-list li {
  margin-bottom: 8px;
}

.subpage-email-box {
  background-color: #f5f7f9;
  border-left: 4px solid #212d3b;
  padding: 24px 28px;
  margin-bottom: 40px;
}

.subpage-email-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #7b7b7b;
  margin: 0 0 8px;
}

.subpage-email-link {
  font-size: 22px;
  font-weight: 700;
  color: #212d3b;
  text-decoration: none;
}

.subpage-email-link:hover {
  text-decoration: underline;
}

.subpage-footer {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid #e8e8e8;
  text-align: center;
  font-size: 0.9rem;
  color: #7b7b7b;
}

.subpage-footer a {
  color: #7b7b7b;
  text-decoration: none;
}

.subpage-footer a:hover {
  color: #252a32;
  text-decoration: underline;
}

@media only screen and (max-width: 600px) {
  .subpage {
    padding: 32px 16px 60px;
  }

  .subpage-header h1 {
    font-size: 1.75rem;
  }
}
