/* ==========================================
   TERMS SECTION - BAMBOO PREMIUM STYLE
========================================== */

.terms-section {
  padding: 40px 0;
  background: linear-gradient(to bottom, #fafaf7, #f3f1ea);
  font-family: 'Poppins', sans-serif;
}

.terms-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* HEADER */
.terms-header {
  text-align: center;
  margin-bottom: 60px;
}

.terms-title {
  font-size: 42px;
  font-weight: 600;
  color: #2f3e2c;
  margin-bottom: 10px;
}

.terms-subtitle {
  font-size: 16px;
  color: #6b7b5e;
  max-width: 600px;
  margin: auto;
}

/* GRID */
.terms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* CARD */
.term-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px;
  position: relative;
  transition: all 0.3s ease;
  border: 1px solid #eee;
  overflow: hidden;
}

/* subtle bamboo vibe line */
.term-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 5px;
  background: linear-gradient(to bottom, #8aa67b, #c2d3a8);
}

/* hover effect */
.term-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* NUMBER */
.term-number {
  font-size: 22px;
  font-weight: 600;
  color: #8aa67b;
  margin-bottom: 10px;
}

/* TITLE */
.term-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #2f3e2c;
}

/* TEXT */
.term-card p {
  font-size: 14px;
  line-height: 1.7;
  color: #555;
}

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

@media (max-width: 600px) {
  .terms-title {
    font-size: 32px;
  }

  .term-card {
    padding: 20px;
  }
}