/* Terms Page - Ottolinger Style */

/* Main Container */
.terms-page-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 40px;
  min-height: 60vh;
}

/* Terms Content Section */
.terms-content-section {
  width: 100%;
}

.terms-title {
  font-size: 18px;
  font-weight: 400;
  color: #000000;
  margin: 0 0 40px 0;
  letter-spacing: 0.3px;
  font-family: "Arial", "Helvetica Neue", sans-serif;
  padding-bottom: 20px;
  border-bottom: 1px solid #e0e0e0;
}

.terms-policy-content {
  font-family: "Arial", "Helvetica Neue", sans-serif;
  color: #000000;
}

.policy-heading {
  font-size: 16px;
  font-weight: 600;
  color: #000000;
  margin: 0 0 20px 0;
  font-family: "Arial", "Helvetica Neue", sans-serif;
}

.terms-policy-content p {
  font-size: 14px;
  line-height: 1.8;
  color: #000000;
  margin: 0 0 20px 0;
  font-family: "Arial", "Helvetica Neue", sans-serif;
}

.terms-policy-content a {
  color: #000000;
  text-decoration: underline;
  transition: opacity 0.2s ease;
}

.terms-policy-content a:hover {
  opacity: 0.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .terms-page-container {
    max-width: 800px;
    padding: 50px 30px;
  }
}

@media (max-width: 768px) {
  .terms-page-container {
    padding: 40px 20px;
  }

  .terms-title {
    font-size: 16px;
    margin-bottom: 30px;
    padding-bottom: 15px;
  }

  .policy-heading {
    font-size: 15px;
    margin-bottom: 15px;
  }

  .terms-policy-content p {
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 18px;
  }
}

@media (max-width: 480px) {
  .terms-page-container {
    padding: 30px 15px;
  }

  .terms-title {
    font-size: 15px;
    margin-bottom: 25px;
  }

  .policy-heading {
    font-size: 14px;
    margin-bottom: 12px;
  }

  .terms-policy-content p {
    font-size: 12px;
    line-height: 1.6;
    margin-bottom: 15px;
  }
}
