/* ===== CYBER LAW CLEAN FINAL FIX ===== */

/* text readability */
.cyber-page p,
.cyber-page li {
  text-align: justify;
  line-height: 1.8;
}

/* ?? strong text dark blue */
.cyber-page strong {
  color: #0b2e4f;
  font-weight: 700;
}

/* ?? headings */
.cyber-page h2,
.cyber-page h3 {
  text-align: center;
  position: relative;
  margin-bottom: 20px;
  color: #0b2e4f;
}

/* gold underline */
.cyber-page h2::after,
.cyber-page h3::after {
  content: "";
  width: 50px;
  height: 2px;
  background: #c9a34e;
  display: block;
  margin: 8px auto 0;
}

/* layout fix */
.cyber-page .jts-founder-box {
  display: flex;
  align-items: flex-start;
}

/* ? REMOVE FAKE SPACE GAP */
.cyber-page .jts-founder-box div[style*="height"] {
  display: none;
}

/* image */
.cyber-page .jts-founder-img {
  margin-top: 40px;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}

.cyber-page .jts-founder-img:hover {
  transform: translateY(-5px);
}

/* text alignment */
.cyber-page .jts-founder-text {
  margin-top: 0;
}

/* table */
.cyber-page table {
  margin: auto;
}

/* table header better */
.cyber-page table tr:first-child {
  background: #f2f2f2;
  font-weight: 600;
}

/* mobile fix */
@media (max-width: 768px) {
  .cyber-page .jts-founder-box {
    display: block;
  }

  .cyber-page .jts-founder-img {
    margin-top: 20px;
  }

  .cyber-page .jts-founder-text {
    margin-top: 20px;
  }
}