@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100..900&family=Poppins:wght@100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ================= PAGE WRAPPER ================= */
.tnc-page {
  padding: 4rem 0 5rem;
  font-family: "Montserrat", sans-serif;
  margin-top: 4rem;
  background: #fff;
}

/* ================= HEADER ================= */
.tnc-header {
  max-width: 900px;
  margin: 0 auto 3rem;
  text-align: center;
  margin-bottom: 0;
}

.header-title {
  font-size: 42px;
  margin-bottom: 10px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700 !important;
}

.tnc-subtitle {
  font-size: 16px;
  color: #666;
}

/* ================= CONTENT WRAPPER ================= */
.tnc-content {
  max-width: 900px;
  margin: 0 auto;
}

/* Intro paragraph (like FAQ description) */
.tnc-content > p {
  font-size: 16px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 28px;
}

/* ================= FAQ-STYLE CARDS ================= */
.tnc-content h3 {
  background: #efebeb;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  padding: 18px 22px;
  font-size: 18px;
  font-family: "Poppins", sans-serif;
  font-weight: 700 !important;
  color: #111;
  border-bottom: 2px solid #e10600;
  margin-bottom: 0;
  position: relative;
  box-shadow: 1px 1px 1px #e0dbdb;
  border-left: 5px solid #e10600;
}

/* Content under heading */
.tnc-content h3 + p,
.tnc-content h3 + ul {
  background: #f5f5f5;
  border-radius: 0 0 12px 12px;
  padding: 16px 22px 20px;
  margin-bottom: 18px;
  color: #444;
  box-shadow: 1px 1px 1px #e0dbdb;
  font-family: "Poppins", sans-serif;
}

/* ================= TEXT ================= */
.tnc-content p {
  font-size: 15px;
}

.tnc-content ul {
  padding-left: 18px;
}

.para {
  margin-bottom: 4px;
  font-weight: 600;
}

.tnc-content ul li {
  font-size: 15px;
  color: #444;
}

/* ================= HOVER FEEL (SUBTLE) ================= */
.tnc-content h3:hover,
.tnc-content h3 + p:hover,
.tnc-content h3 + ul:hover {
  background: #e0e0e0;
  transition: background 0.25s ease;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .tnc-page {
    padding: 2.5rem 0 3rem;
    margin-top: 3rem;
  }

  .tnc-header h1 {
    font-size: 28px;
  }

  .tnc-content {
    padding: 0 14px;
  }

  .tnc-content h3 {
    font-size: 16px;
    padding: 14px 16px;
  }

  .tnc-content h3 + p,
  .tnc-content h3 + ul {
    padding: 14px 16px 16px;
  }

  .tnc-content p,
  .tnc-content ul li {
    font-size: 14px;
  }
}
