body {
    font-family: "Hellix", sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    color: white !important;
    background-color: #111;
    margin: 0;
    padding: 0;
}

/* Header Navigation Elements */
.careers-link {
  position: absolute;
  top: 1rem;
  z-index: 200;
  left: 1rem;
  font-size: clamp(0.8rem, 2vw, 1rem);
  font-weight: 400;
  color: white;
  padding: 0.5rem 0.5rem;
  cursor: pointer;
  z-index: 200;
  opacity: 1;
  visibility: visible;
  text-decoration: none;
  transition: opacity 1s ease, color 0.3s ease;
}

.careers-link:hover {
  color: rgba(255, 255, 255, 0.348);
  cursor: pointer;
}

.email-container {
  position: fixed;
  top: 1rem;
  left: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  z-index: 101;
  justify-content: center;
}

.email {
  position: relative;
  font-size: clamp(0.8rem, 2vw, 1rem);
  font-weight: 400;
  color: white;
  padding: 0.5rem 0.5rem;
  cursor: pointer;
  z-index: 3;
  transition: opacity 1s ease, color 0.3s ease;
  text-decoration: none;
}

.email:hover {
  color: rgba(255, 255, 255, 0.348);
  cursor: pointer;
}

.privacy-policy-button {
  position: fixed;
  top: 1rem;
  right: 1rem;
  font-size: clamp(0.8rem, 2vw, 1rem);
  font-weight: 400;
  color: white;
  padding: 0.5rem 0.5rem;
  cursor: pointer;
  z-index: 102;
  opacity: 1;
  visibility: visible;
  transition: opacity 1s ease, color 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}

@media (hover: hover) {
  .privacy-policy-button:hover {
    color: rgba(255, 255, 255, 0.348);
  }
}

.privacy-policy-button:active {
  color: rgba(255, 255, 255, 0.348);
  transition: color 0s;
}

/* Main Content */
.wrapper {
    max-width: 60rem;
    margin: 2rem auto;
    padding: 3rem;
    margin-top: 6rem; /* Add space for fixed header */
}

.effective-date {
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    line-height: 1.2;
    font-weight: 500;
    margin: 0 0 2rem 0;
    text-align: center;
}

h2 {
    font-size: clamp(1.25rem, 3vw, 2rem);
    line-height: 1.2;
    font-weight: 500;
    margin-bottom: 1rem;
}

h3 {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.2;
    font-weight: 500;
    margin: 0;
}

.privacy-policy-section {
    margin-bottom: 2rem;
}

.text-link {
    color: white;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    transition: border-color 0.3s ease;
}

.text-link:hover {
    border-bottom-color: white;
}

p {
    line-height: 1.6;
    margin-bottom: 1rem;
}

ul {
    line-height: 1.6;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .email-container {
        display: none; /* Hide email on mobile for better layout */
    }
    
    .wrapper {
        margin: 1rem;
        padding: 2rem 1rem;
        margin-top: 5rem;
    }
}

@media (min-width: 769px) {
  .email-container {
    justify-content: flex-end;
  }

  .email-container .email {
    padding-right: calc(1rem + 8px);
  }

  .privacy-policy-button {
    top: 2.5rem;
  }
}