.page-type-landing h2 {
    text-align: center;
    font-size: 1.8em;
    font-weight:500;
    margin-bottom: 1em;
}
.page-type-landing h3 {
    font-size: 1.3em;
    font-weight:200;
    /* border: 1px solid red; */
}

.page-type-landing h4 {
    text-align: center;
    font-size: 1.3em;
    font-weight: 100!important;;
}



/* xl Extra large screens (≥1200px and up to <1400px) */
@media (max-width: 1399.98px) {
    
}

/* lg Large screens (≥992px and up to <1200px) */
@media (max-width: 1199.98px) {
}

/* md Medium screens (tablets, ≥768px and up to <992px) */
@media (max-width: 991.98px) {
}

/* sm Small screens (landscape phones, ≥576px and up to <768px) */
@media (max-width: 767.98px) {
    .page-type-landing h3, .page-type-landing h4 {
        font-weight: 400!important;
    }
}

/* xs Extra small screens (portrait phones, <576px) */
@media (max-width: 575.98px) {
}

.circle-img {
    width: 280px;
    height: 280px;
    object-fit: cover;
    object-position: center 0%;
    border-radius: 50%;
    margin-bottom: 1rem;
    border: 3px solid #ccc;
}
.circle-img-2 {
    border-radius: 50%;
    margin-bottom: 1rem;
}
.checklist-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; /* evenly spread items */
  gap: 2rem;
  margin: 2rem auto;
  max-width: 1200px;
}

/* Each block always has half width on desktop */
.checklist-block {
  flex: 0 1 calc(50% - 2rem); /* two per row with gap */
  box-sizing: border-box;
  min-width: 300px; /* don’t shrink too much */
}


/* Checklist styling */
.checklist.highlight-list {
  list-style: none;
  padding: 1rem;
  border: 2px solid var(--bs-primary-light, #ccc);
  border-radius: 8px;
  background: rgba(189, 208, 159, 0.08);
}

.checklist.highlight-list li {
  break-inside: avoid;
  margin: 0.4rem 0;
}

/* Mobile: stack full width */
@media (max-width: 767px) {
  .checklist-block {
    flex: 1 1 100%;
    max-width: 100%;
  }
}
