/* ===== TERMS OF SERVICE STYLES ===== */
.terms-page {
  background-color: var(--off-white);
}

.terms-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/Q5_Wheel_Close_Up.jfif') center/cover no-repeat;
  color: white;
  padding: 4rem 0;
  text-align: center;
}

.terms-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.terms-content {
  background: white;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  padding: 3rem;
  max-width: 1000px;
  margin: 2rem auto;
}

.terms-section {
  margin-bottom: 2.5rem;
}

.terms-section h2 {
  color: var(--dark-blue);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--light-gray);
  padding-bottom: 0.5rem;
}

.terms-section h3 {
  color: var(--dark-blue);
  font-size: 1.2rem;
  margin: 1.5rem 0 0.5rem;
}

.terms-section p,
.terms-section ul {
  line-height: 1.6;
  color: #555;
}

.terms-section ul {
  padding-left: 1.5rem;
}

.terms-section li {
  margin-bottom: 0.5rem;
}

.highlight-box {
  background-color: var(--light-gray);
  border-left: 4px solid var(--sky-blue);
  padding: 1rem;
  margin: 1.5rem 0;
}

.last-updated {
  text-align: right;
  font-style: italic;
  color: #777;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .terms-hero h1 {
    font-size: 2rem;
  }
  .terms-content {
    padding: 2rem;
  }
}