/* Main container */
.website-policies {
  line-height: 1.7;
  padding: 150px 25px 0px 25px;
  display: flex;
  justify-content: center;
}

/* Wrapper with max width */
.website-policies-wrapper {
  max-width: 1000px;
  width: 100%;
}

/* Typography */
.website-policies-wrapper h1 {
  text-align: center;
  font-size: clamp(24px, 5vw, 44px);
  font-weight: 700;
  margin-bottom: 20px;
}

.website-policies-wrapper h2 {
  font-size: clamp(14px, 2vw, 22px);
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 10px;
}

.website-policies-wrapper p {
  text-align: justify;
  font-size: clamp(12px, 2vw, 18px);
  margin-bottom: 16px;
}

.website-policies-wrapper ul {
  font-size: clamp(12px, 2vw, 18px);
  margin: 0px 0px 18px 0px;
  padding: 0px 0px 0px 19px;
}

/* Small text for last updated */
.last-updated {
  text-align: center !important;
  font-size: clamp(12px, 2vw, 18px);
  font-weight: 500;
  margin-bottom: 30px;
  color: #555;
}

/* Email link style */
a.email-link {
  color: #007BFF;
  text-decoration: none;
  transition: text-decoration 0.2s ease;
}

a.email-link:hover {
  text-decoration: underline;
}