/* ─── ARBITRATION / CE SECTION ─── */
.ce-section {
  padding: 40px 0 60px;
}

/* ── Top full-width image ── */
.ce-top-img-wrap {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 10px;
}
.ce-top-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 14px;
}

/* ── Main title ── */
.ce-title {
  color: #7E361D;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 10px;
}

/* ── Subtitle / tagline ── */
.ce-subtitle {
  color: #7E361D;
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.6;
}

/* ── Body text ── */
.ce-body {
  color: #000000;
  font-size: 16px;
  line-height: 33px;
  margin-bottom: 16px;
  font-weight: 400;
}

/* ── Section headings ── */
.ce-sub-heading {
  font-size: 18px;
  font-weight: 700;
  color: #000000;
  margin-top: 28px;
  margin-bottom: 10px;
}

/* ── Item sub-headings ── */
.ce-item-heading {
  font-size: 15.5px;
  font-weight: 700;
  color: #000000;
  margin-top: 16px;
  margin-bottom: 6px;
}

/* ── Dot bullet list — brown circle like image ── */
.ce-dot-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}
.ce-dot-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  color: #000000;
  line-height: 33px;
  margin-bottom: 10px;
  font-weight: 400;
}

.ce-dot-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;
}

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

/* Brown filled circle dot */
/*.ce-dot-list li::before {*/
/*  content: '';*/
/*  display: inline-block;*/
/*  width: 11px;*/
/*  height: 11px;*/
/*  min-width: 11px;*/
/*  border-radius: 50%;*/
/*  background: #7E361D;*/
/*  margin-top: 6px;*/
/*  flex-shrink: 0;*/
/*}*/

/* ── Responsive ── */
@media (max-width: 767px) {
  .ce-section { padding: 30px 0 40px; }
  .ce-top-img { height: 220px; border-radius: 10px; }
  .ce-title { font-size: 2rem; }
  .ce-sub-heading { font-size: 16px; }
}

@media (max-width: 480px) {
  .ce-top-img { height: 180px; }
  .ce-title { font-size: 1.6rem; }
}