/* =========================
   Terms & Conditions Page
   ========================= */

/* Main section */
.terms-section {
  background-color: #f8f9fa;
}

/* Container spacing */
.terms-section .container {
  max-width: 1100px;
}

/* Main heading */
.terms-head {
  font-size: 34px;
  font-weight: 700;
  color: #212529;
  text-align: center;
  position: relative;
  padding-bottom: 12px;
}

/* Underline for heading */
.terms-head::after {
  content: "";
  width: 80px;
  height: 3px;
  background-color: #0d6efd;
  display: block;
  margin: 10px auto 0;
  border-radius: 5px;
}

/* Sub headings */
.terms-subhead {
  font-size: 19px;
  font-weight: 600;
  color: #0a58ca;
  margin-top: 25px;
}

/* Paragraph text */
.terms-text {
  font-size: 15.5px;
  line-height: 1.8;
  color: #495057;
  margin-bottom: 18px;
}

/* Optional list styling (if you add <ul>) */
.terms-text ul {
  padding-left: 18px;
  margin-top: 10px;
}

.terms-text ul li {
  margin-bottom: 8px;
}

/* Highlighted legal text */
.terms-text strong {
  color: #212529;
  font-weight: 600;
}

/* Card-like effect */
.terms-section .col-12 {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

/* Links */
.terms-section a {
  color: #0d6efd;
  text-decoration: none;
  font-weight: 500;
}

.terms-section a:hover {
  text-decoration: underline;
}

/* Divider spacing */
.terms-divider {
  height: 1px;
  background-color: #dee2e6;
  margin: 30px 0;
}

/* Responsive styles */
@media (max-width: 768px) {
  .terms-head {
    font-size: 26px;
  }

  .terms-subhead {
    font-size: 17px;
  }

  .terms-text {
    font-size: 14.5px;
  }

  .terms-section .col-12 {
    padding: 25px;
  }
}

@media (max-width: 576px) {
  .terms-head {
    font-size: 24px;
  }

  .terms-text {
    line-height: 1.7;
  }
}
