/* terms-of-use.css - Ultra Premium Editorial Design */

.terms-page {
  background-color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  color: var(--dark);
}

/* ── 1. CLEAN HERO (Consistent with other pages) ── */
.clean-hero {
  position: relative;
  min-height: 60vh;
  background: url('images/Pushpanjali-banner-1.jpg') center/cover no-repeat fixed;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.clean-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(253, 252, 252, 1) 0%, rgba(253, 252, 252, 0.85) 45%, rgba(253, 252, 252, 0) 100%);
  z-index: 1;
}

.ch-inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 32px;
  animation: fadeRight 1s ease-out;
}

.ch-content {
  max-width: 650px;
}

.ch-tag {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--teal);
  margin-bottom: 16px;
  display: inline-block;
  background: color-mix(in srgb, var(--teal) 10%, transparent);
  padding: 6px 16px;
  border-radius: 30px;
}

.ch-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 5vw, 4.5rem);
  color: var(--teal-dark);
  margin-bottom: 20px;
  line-height: 1.1;
  font-weight: 700;
}

.ch-content p {
  font-size: 1.15rem;
  color: var(--gray);
  margin-bottom: 30px;
  line-height: 1.7;
}

@keyframes fadeRight {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Terms Content Section */
.terms-section {
  padding: 100px 20px;
  background-color: var(--white);
}

.terms-container {
  max-width: 1100px;
  margin: 0 auto;
}

.policy-block {
  display: flex;
  gap: 60px;
  padding: 60px 0;
  border-bottom: 1px solid rgba(190, 143, 159, 0.2);
}

.policy-block:first-child {
  padding-top: 0;
}

.policy-block:last-child {
  border-bottom: none;
}

.policy-header {
  flex: 0 0 300px;
}

.policy-num {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.2rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 15px;
}

.policy-header h2 {
  font-family: 'Playfair Display', serif;
  color: var(--teal-dark);
  font-size: 2.2rem;
  line-height: 1.2;
}

.policy-body {
  flex: 1;
}

.policy-body p {
  color: var(--gray);
  line-height: 1.9;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.policy-body p strong {
  color: var(--dark2);
}

.policy-body ul {
  margin-bottom: 25px;
  padding-left: 0;
  list-style: none;
}

.policy-body li {
  color: var(--gray);
  line-height: 1.9;
  font-size: 1.1rem;
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
}

.policy-body li::before {
  content: '→';
  color: var(--gold);
  position: absolute;
  left: 0;
  font-weight: 600;
}

.policy-body a {
  color: var(--teal);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.policy-body a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.last-updated {
  margin-top: 60px;
  font-size: 0.95rem;
  color: var(--teal-light);
  font-style: italic;
  text-align: center;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 900px) {
  .policy-block {
    flex-direction: column;
    gap: 20px;
    padding: 40px 0;
  }
  .policy-header {
    flex: none;
  }
}
