body {
  background: #faf6f7;
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
}

/* MAIN CONTAINER */
.terms-wrapper {
  max-width: 1100px;
  margin: 60px auto;
  padding: 60px;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

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

.terms-header h1 {
  font-family: "Playfair Display", serif;
  font-size: 52px;
  font-weight: 800;
  color: #111111;
  line-height: 1.2;
  margin-bottom: 20px;
}

.terms-line {
  width: 120px;
  height: 5px;
  background: #d84f74;
  margin: 0 auto 30px;
  border-radius: 999px;
}

.terms-intro {
  max-width: 850px;
  margin: auto;
  font-size: 18px;
  line-height: 1.9;
  color: #555555;
}

/* SECTIONS */
.terms-section {
  margin-bottom: 55px;
}

.terms-section h2 {
  position: relative;
  font-family: "Playfair Display", serif;
  font-size: 30px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 22px;
  padding-left: 18px;
}

.terms-section h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 6px;
  height: 32px;
  border-radius: 50px;
  background: #d84f74;
}

.terms-section p {
  font-size: 17px;
  line-height: 1.9;
  color: #444444;
  margin-bottom: 18px;
}

/* LISTS */
.terms-section ul {
  margin-top: 15px;
  padding-left: 25px;
}

.terms-section ul li {
  font-size: 17px;
  color: #444444;
  line-height: 1.8;
  margin-bottom: 12px;
}

/* HIGHLIGHT BOX */
.highlight-box {
  margin-top: 25px;
  background: linear-gradient(135deg, #fff4f7 0%, #ffeef3 100%);
  border-left: 5px solid #d84f74;
  padding: 24px;
  border-radius: 16px;
  color: #444444;
  line-height: 1.8;
  font-size: 16px;
  transition: all 0.3s ease;
}

.highlight-box:hover {
  transform: translateY(-2px);
}

/* CONTACT BOX */
.contact-box {
  margin-top: 20px;
  background: #111111;
  color: #ffffff;
  padding: 25px;
  border-radius: 16px;
  line-height: 1.8;
  font-size: 17px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.contact-box:hover {
  transform: translateY(-2px);
}

/* FOOTER */
.terms-footer {
  margin-top: 70px;
  padding-top: 40px;
  border-top: 1px solid #eeeeee;
  text-align: center;
}

.terms-footer p {
  color: #555555;
  line-height: 1.8;
  max-width: 700px;
  margin: auto;
}

.updated-date {
  display: inline-block;
  margin-top: 20px;
  background: #d84f74;
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

/* TABLET */
@media (max-width: 992px) {
  .terms-wrapper {
    padding: 40px;
    margin: 30px 20px;
  }

  .terms-header h1 {
    font-size: 42px;
  }

  .terms-section h2 {
    font-size: 26px;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .terms-wrapper {
    padding: 28px 22px;
    margin: 20px 15px;
    border-radius: 18px;
  }

  .terms-header {
    margin-bottom: 45px;
  }

  .terms-header h1 {
    font-size: 34px;
  }

  .terms-intro {
    font-size: 16px;
  }

  .terms-section {
    margin-bottom: 40px;
  }

  .terms-section h2 {
    font-size: 22px;
    padding-left: 15px;
  }

  .terms-section h2::before {
    height: 24px;
  }

  .terms-section p,
  .terms-section ul li {
    font-size: 15px;
    line-height: 1.8;
  }

  .highlight-box,
  .contact-box {
    padding: 18px;
  }
}

/* SMALL MOBILE */
@media (max-width: 480px) {
  .terms-header h1 {
    font-size: 28px;
  }

  .terms-line {
    width: 90px;
  }

  .updated-date {
    width: 100%;
    text-align: center;
  }
}