body {
  font-family: 'Inter', sans-serif;
}

/* Custom Select Arrow styling to replace default */
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='https://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a1a1aa' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1em;
}

.scroll-animate {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity;
    transform: translateY(24px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.scroll-animate.show {
  opacity: 1;
    transform: translateY(0);
}


#faq .faq-answer a {
  text-decoration: underline;
  color: #ff8b0d;
  font-weight: 500;
}

.drivezones h1 {
  font-size: 2.25rem;
}
.drivezones h2 {
  font-size: 1.75rem;
}
.drivezones h1, .drivezones h2, .drivezones h3 {
  margin-top: 2rem;

  color: #111;
  font-weight: 600;
}
.drivezones ul {
  list-style-type: disc;
    margin-bottom: 1rem;
  margin-left: 2.5rem;
}