/* ─── PMLA PAGE ─── */
.pmla-section {
  padding: 40px 0;
  background: #ffffff;
}

/* ── Banner Image ── */
.pmla-banner-img {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 36px;
  box-shadow: 0 4px 24px rgba(60, 20, 10, 0.10);
}

.pmla-banner-img img {
  width: 100%;
  height: 500px;
  object-fit: fill;
  object-position: center;
  display: block;
}

/* ── Content Box ── */
.pmla-content-box {
  background: #ffffff;
  padding: 0 4px;
}

/* ── Intro Bold Para ── */
.pmla-intro-bold {
  font-size: 18px;
  font-weight: 700;
  color: #1e1e1e;
  line-height: 1.75;
  margin-bottom: 14px;
  text-align: justify;
}

/* ── Bullet List ── */
.pmla-bullet-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
}

.pmla-bullet-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 9px 0;
    border-bottom: 1px solid #F0E4DA;
    font-size: 0.91rem;
    color: #3A2210;
    font-weight: 600;
    line-height: 1.55;
}

.pmla-bullet-list li:last-child {
    border-bottom: none;
}

.pmla-bullet-list li .bullet-icon {
    flex-shrink: 0;
    margin-top: 4px;
    width: 18px;
    height: 18px;
    background: #6B2010;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pmla-bullet-list li .bullet-icon::after {
    content: '';
    width: 6px;
    height: 6px;
    background: #D4845A;
    border-radius: 50%;
    display: block;
}


/* Small bullet dot */
/*.pmla-bullet-list li::before {*/
/*  content: '•';*/
/*  position: absolute;*/
/*  left: 4px;*/
/*  top: 0;*/
/*  color: #555;*/
/*  font-size: 13px;*/
/*  line-height: 1.75;*/
/*}*/

/* ── Each Topic Section ── */
.pmla-topic {
  margin-bottom: 26px;
  padding-bottom: 4px;
}

/* Topic heading */
.pmla-topic-title {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
  line-height: 1.3;
}

/* Topic paragraph */
.pmla-topic p {
  font-size: 16px;
  color: #000000;
  line-height: 33px;
  margin-bottom: 0;
  font-weight: 400;
  text-align: justify;
}

/* ── SRI LAW Support Box ── */
.pmla-support-box .pmla-topic-title {
  font-weight: 700;
}

.pmla-support-box .pmla-bullet-list {
  margin-top: 10px;
  margin-bottom: 0;
}

.pmla-support-box .pmla-bullet-list li {
  margin-bottom: 10px;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .pmla-banner-img img {
    height: 220px;
  }
  .pmla-section {
    padding: 30px 0 50px;
  }
}

@media (max-width: 480px) {
  .pmla-banner-img img {
    height: 180px;
    border-radius: 10px;
  }
  .pmla-topic-title {
    font-size: 14.5px;
  }
}