/* ====== Terms Container ====== */
.container.terms {
  max-width: 900px;
  margin: 50px auto;
  padding: 0 20px;
}

.container.terms .section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 40px;
  color: #333;
}

/* ====== Wrapper ====== */
.terms-sections {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* ====== Cards ====== */
.terms-card {
  background: #fff;
  padding: 25px 30px;
  border-radius: 16px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.07);
  text-align: right;
  border: 1px solid #e4e4e4;
  transition: all 0.2s ease;
}

.terms-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(0,0,0,0.12);
}

/* ====== Titles ====== */
.terms-card h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #444;
}

/* ====== Text ====== */
.terms-card p {
  font-size: 15.5px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 10px;
}

/* ====== Lists ====== */
.terms-card ul {
  padding-right: 20px;
  margin-bottom: 15px;
}

.terms-card ul li {
  font-size: 15px;
  color: #444;
  line-height: 1.9;
  margin-bottom: 6px;
  position: relative;
}

.terms-card ul li::before {
  content: "•";
  position: absolute;
  right: -15px;
  top: 2px;
  font-size: 20px;
  color: #ff5757;
}

/* ====== Responsive ====== */
@media (max-width: 600px) {
  .terms-card {
    padding: 20px;
  }
  .terms-card h2 {
    font-size: 20px;
  }
  .terms-card ul li,
  .terms-card p {
    font-size: 14.3px;
  }
}
