/* terms-conditions.css — Terms & Conditions page. Elementor page ID 755. */

/* ── Page Header ──────────────────────────────────────── */
.ha-tc-header {
  position: relative;
  height: 250px;
  min-height: 250px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--green);
}

.ha-tc-header-media,
.ha-tc-header-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.ha-tc-header-media img {
  display: block;
  object-fit: cover;
  object-position: center center;
}

.ha-tc-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    color-mix(in srgb, var(--text) 78%, transparent) 0%,
    color-mix(in srgb, var(--text) 58%, transparent) 54%,
    color-mix(in srgb, var(--text) 44%, transparent) 100%
  );
}

.ha-tc-header-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

/* [fix #1] H1 Hero: 65px desktop → 40px mobile, no xs reduction */
.ha-tc-header-inner h1 {
  font-family: 'Fields Display', 'DM Serif Display', Georgia, serif;
  font-size: 65px;
  font-weight: 500;
  color: var(--white);
  margin: 0 0 var(--space-4);
  line-height: 1.1;
}
.ha-tc-header-inner p {
  font-size: 20px;
  color: color-mix(in srgb, var(--white) 90%, transparent);
  max-width: 720px;
  margin: 0;
  line-height: 1.5;
}
@media (min-width: 576px) and (max-width: 767px) {
  .ha-tc-header { height: 250px; min-height: 250px; }
  .ha-tc-header-inner { padding: 0 var(--space-5); text-align: center; }
  .ha-tc-header-inner h1 { font-size: 40px; }
  .ha-tc-header-inner p { font-size: 16px; }
}
@media (max-width: 575px) {
  .ha-tc-header { height: 250px; min-height: 250px; }
  .ha-tc-header::after {
    background: linear-gradient(
      90deg,
      color-mix(in srgb, var(--text) 82%, transparent) 0%,
      color-mix(in srgb, var(--text) 64%, transparent) 100%
    );
  }
  .ha-tc-header-inner { padding: 0 var(--space-4); text-align: center; }
  .ha-tc-header-inner h1 { font-size: 40px; } /* fix #1: was 32px */
  .ha-tc-header-inner p { font-size: 15px; }
}

/* ── Content ──────────────────────────────────────────── */
.ha-tc-content {
  background: var(--white);
  padding: var(--space-8) 0;
}

.ha-tc-wrap {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}
@media (max-width: 767px) { .ha-tc-wrap { padding: 0 var(--space-5); } }
@media (max-width: 575px) { .ha-tc-wrap { padding: 0 var(--space-4); } }

.ha-tc-list {
  list-style: none;
  counter-reset: tc-counter;
  padding: 0;
  margin: 0;
}
.ha-tc-list li {
  counter-increment: tc-counter;
  position: relative;
  display: flex;
  gap: var(--space-4);
  padding: var(--space-5) 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 16px;
  color: var(--text);
  line-height: 1.7;
}
.ha-tc-list li:first-child { padding-top: 0; }
.ha-tc-list li:last-child  { border-bottom: none; }
.ha-tc-list li::before {
  content: counter(tc-counter) '.';
  flex-shrink: 0;
  width: 32px;
  font-weight: 700;
  color: var(--green);
  font-size: 16px;
  padding-top: 1px;
}
@media (max-width: 575px) {
  .ha-tc-list li { font-size: 15px; gap: var(--space-3); }
  .ha-tc-list li::before { width: 24px; font-size: 15px; }
}
