/* ============================================
   Terms Page Styles
============================================ */

/* Container override */
.terms-container {
  max-width: 800px;
}

/* Terms Table */
.terms-table {
  width: 100%;
  border-collapse: collapse;
}

.terms-table tr {
  border-bottom: 1px solid #e0e0e0;
}

.terms-table tr:last-child {
  border-bottom: none;
}

.terms-table th {
  padding: 1.5rem 1rem;
  text-align: left;
  background-color: #f8f8f8;
  width: 30%;
  font-weight: 600;
}

.terms-table td {
  padding: 1.5rem 1rem;
}

/* Contact Box */
.terms-contact-box {
  margin-top: 3rem;
  padding: 2rem;
  background-color: #f8f8f8;
  border-radius: 8px;
}

.terms-contact-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.terms-contact-email {
  margin-top: 1rem;
}

/* Updated Date */
.terms-updated {
  text-align: right;
  margin-top: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
  .terms-table,
  .terms-table tbody,
  .terms-table tr,
  .terms-table th,
  .terms-table td {
    display: block;
    width: 100%;
  }

  .terms-table tr {
    border-bottom: none;
  }

  .terms-table th {
    padding: 1rem 0.75rem 0.5rem;
    font-size: 0.875rem;
  }

  .terms-table td {
    padding: 0.5rem 0.75rem 1rem;
    font-size: 0.875rem;
  }

  .terms-contact-box {
    padding: 1.5rem;
  }
}


h1{
  font-size: clamp(1.1rem, 2vw, 1.2rem);
}
.terms-content p,.terms-content li{
  font-size: clamp(0.9rem, 2vw, 1rem);
}