@import url('about_styles.css');

.terms-main { padding: 60px 0; }

.terms-hero {
  background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
  padding: 80px 20px 60px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.terms-hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  margin: 0 0 16px;
  color: var(--text);
}
.terms-hero p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 18px;
}

.terms-section {
  padding: 40px 20px;
}
.terms-section h2 {
  margin-top: 40px;
  font-size: 24px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  color: var(--accent);
}
.terms-section p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  margin-top: 10px;
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 44px; height: 44px;
  border: none; border-radius: 50%;
  background: var(--accent); color: #fff;
  font-size: 22px; cursor: pointer;
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s, transform 0.3s;
  z-index: 100;
}
.back-to-top.show {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.back-to-top:hover { filter: brightness(0.9); }
