/* ===== TAXATION PAGE FINAL CLEAN CSS ===== */

.taxation-page .taxation-top {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 40px;
}

/* IMAGE */
.taxation-page .jts-founder-img {
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  margin-top: 180px;
}

/* TEXT */
.taxation-page .jts-founder-text {
  max-width: 100%;
  margin: 0;
}

/* REMOVE TOP WHITE SPACE */
.taxation-page .jts-founder {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

/* ===== FULL WIDTH ===== */
.taxation-page .taxation-full {
  margin-top: 20px;
}

/* ===== TABLE ===== */
.taxation-page .table-responsive-custom {
  width: 100%;
  overflow-x: auto;
}

.taxation-page .taxation-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

/* HEADER */
.taxation-page .taxation-table th {
  background: #0b2e4f;
  color: #fff;
  text-align: center;
  padding: 14px;
  font-weight: 600;
  border: 1px solid #ddd;
}

/* BODY */
.taxation-page .taxation-table td {
  padding: 12px;
  font-size: 14px;
  border: 1px solid #ddd;
  color: #333;
}

/* HOVER */
.taxation-page .taxation-table tr:hover {
  background: #f9f9f9;
}

/* ===== LIST ===== */
.taxation-page .taxation-list {
  padding-left: 20px;
  margin-top: 15px;
}

.taxation-page .taxation-list li {
  margin-bottom: 10px;
  color: #333;
}

/* STRONG TEXT BLUE */
.taxation-page .taxation-list li strong {
  color: #0b2e4f;
}

/* ===== PARAGRAPH ===== */
.taxation-page .taxation-para {
  text-align: justify;
  line-height: 1.8;
  margin-top: 15px;
}

/* ===== HEADINGS ===== */
.taxation-page h2,
.taxation-page h3 {
  margin-top: 30px;
  margin-bottom: 15px;
  color: #0b2e4f;
}

/* ===== PERFECT GOLD UNDERLINE (FIXED) ===== */

/* MAIN HEADING */
.taxation-page h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: #c9a14a;
  margin: 8px auto 0 auto;   /* CENTER ALIGN */
}

/* SUB HEADINGS */
.taxation-page h3::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: #c9a14a;
  margin: 6px auto 0 auto;   /* CENTER ALIGN */
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {

  .taxation-page .taxation-top {
    display: block;
  }

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

  .taxation-page .taxation-table th,
  .taxation-page .taxation-table td {
    font-size: 13px;
    padding: 8px;
  }

}

/* ===== FORCE BLUE FOR ALL LIST STRONG TEXT ===== */

ul.jts-list li strong,
ul.taxation-list li strong,
ul li strong {
  color: #0b2e4f !important;
}

.jts-list li strong,
.taxation-list li strong {
  color: #0b2e4f !important;
}