:root {
  --primary: #15a362;
  --dark: #003d2c;
  --dark-2: #012f23;
  --text: #18352d;
  --muted: #6b7d76;
  --border: #e6eee9;
  --bg: #f8fbf9;
  --white: #ffffff;
  --shadow: 0 12px 35px rgba(0, 61, 44, 0.08);
  --radius: 18px;
}

.terms-page {
  background: #fff;
  color: var(--text);
  padding-bottom: 26px;
}

/* Hero */
.terms-hero {
  padding: 42px 0 32px;
}

.terms-hero-box {
  min-height: 280px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.98) 0%,
      rgba(255, 255, 255, 0.94) 45%,
      rgba(238, 248, 243, 0.88) 100%
    );
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  overflow: hidden;
}

.terms-hero-content {
  padding: 44px 60px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #71847d;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
}

.breadcrumb a {
  color: #71847d;
  text-decoration: none;
}

.breadcrumb i {
  font-size: 11px;
  color: #a7b8b0;
}

.breadcrumb span {
  color: var(--primary);
  font-weight: 900;
}

.terms-hero-content h1 {
  font-size: 54px;
  line-height: 1.25;
  color: var(--dark);
  font-weight: 900;
  margin-bottom: 18px;
}

.terms-hero-content p {
  max-width: 630px;
  color: #314a42;
  font-size: 17px;
  line-height: 1.95;
  font-weight: 600;
}

/* Hero Illustration */
.terms-hero-img {
  min-height: 280px;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at center, rgba(21, 163, 98, .14), transparent 58%);
}

.terms-hero-img::before,
.terms-hero-img::after {
  content: "";
  position: absolute;
  background: rgba(21, 163, 98, .12);
  border-radius: 50%;
  filter: blur(.2px);
}

.terms-hero-img::before {
  width: 190px;
  height: 110px;
  right: 80px;
  bottom: 42px;
  border-radius: 60% 40% 50% 50%;
}

.terms-hero-img::after {
  width: 120px;
  height: 70px;
  left: 120px;
  bottom: 45px;
  border-radius: 50% 60% 40% 50%;
}

.paper {
  width: 155px;
  height: 190px;
  background: linear-gradient(145deg, #fff, #f6faf8);
  border-radius: 14px;
  box-shadow: 0 20px 45px rgba(0, 61, 44, .12);
  transform: rotate(-7deg);
  position: relative;
  z-index: 2;
  padding: 42px 26px 20px;
}

.paper::before {
  content: "";
  position: absolute;
  top: 21px;
  right: 25px;
  width: 92px;
  height: 9px;
  border-radius: 20px;
  background: rgba(21, 163, 98, .58);
}

.paper span {
  display: block;
  height: 7px;
  border-radius: 20px;
  background: #c4d5ce;
  margin-bottom: 14px;
}

.paper span:nth-child(1) {
  width: 95px;
}

.paper span:nth-child(2) {
  width: 78px;
}

.paper span:nth-child(3) {
  width: 105px;
}

.paper span:nth-child(4) {
  width: 66px;
}

.shield {
  width: 112px;
  height: 124px;
  background: linear-gradient(145deg, var(--primary), #087344);
  color: #fff;
  position: absolute;
  right: 180px;
  bottom: 45px;
  z-index: 3;
  clip-path: polygon(50% 0%, 90% 14%, 90% 56%, 50% 100%, 10% 56%, 10% 14%);
  display: grid;
  place-items: center;
  font-size: 48px;
  box-shadow: 0 20px 35px rgba(21, 163, 98, .3);
}

/* Content */
.terms-content {
  padding-bottom: 30px;
}

.terms-list {
  display: grid;
  gap: 14px;
}

.term-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  min-height: 116px;
  padding: 22px 42px;
  display: grid;
  grid-template-columns: 92px 1px 1fr;
  gap: 28px;
  align-items: center;
  box-shadow: 0 8px 24px rgba(0, 61, 44, .035);
  transition: .25s ease;
}

.term-card:hover {
  transform: translateY(-3px);
  border-color: rgba(21, 163, 98, .35);
  box-shadow: var(--shadow);
}

.term-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #eef8f3;
  color: #14824f;
  display: grid;
  place-items: center;
  font-size: 30px;
  justify-self: center;
}

.term-line {
  width: 1px;
  height: 70px;
  background: #dce8e2;
}
/* 
.term-text {
  text-align: center;
} */

.term-text h2 {
  font-size: 20px;
  color: #132c25;
  font-weight: 900;
  margin-bottom: 6px;
}

.term-text p {
  max-width: 760px;
  color: #4e625a;
  font-size: 15.5px;
  line-height: 1.9;
  font-weight: 600;
}

/* Bottom Note */
.terms-note {
  margin-top: 20px;
  min-height: 86px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background:
    linear-gradient(
      90deg,
      rgba(255,255,255,.96) 0%,
      rgba(238,248,243,.9) 70%,
      rgba(238,248,243,.95) 100%
    );
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 18px 60px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 61, 44, .035);
}

.terms-note::after {
  content: "";
  position: absolute;
  left: 70px;
  bottom: -26px;
  width: 230px;
  height: 90px;
  background: rgba(21, 163, 98, .08);
  border-radius: 60% 40% 0 0;
}

.note-icon {
  width: 58px;
  height: 64px;
  background: linear-gradient(145deg, var(--primary), #087344);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 28px;
  clip-path: polygon(50% 0%, 90% 14%, 90% 56%, 50% 100%, 10% 56%, 10% 14%);
  flex-shrink: 0;
}

.terms-note h3 {
  color: var(--dark);
  font-size: 17px;
  font-weight: 900;
  margin-bottom: 3px;
}

.terms-note p {
  color: #4f655d;
  font-size: 14px;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 992px) {
  .terms-hero-box {
    grid-template-columns: 1fr;
  }

  .terms-hero-content {
    padding: 34px 28px;
  }

  .terms-hero-img {
    min-height: 230px;
  }

  .shield {
    right: calc(50% - 15px);
  }
}

@media (max-width: 768px) {
  .container {
    width: min(100% - 28px, 1220px);
  }

  .terms-hero {
    padding: 28px 0 24px;
  }

  .terms-hero-content h1 {
    font-size: 36px;
  }

  .terms-hero-content p {
    font-size: 15px;
  }

  .term-card {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 24px 20px;
    text-align: center;
  }

  .term-line {
    display: none;
  }

  .term-text h2 {
    font-size: 18px;
  }

  .term-text p {
    font-size: 14px;
  }

  .terms-note {
    padding: 22px 20px;
    align-items: flex-start;
  }
}