h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 48px;
  text-align: center;
}


.content-wrap {
  width: 100%;
  margin: 0 auto;
  padding: 48px 32px;        /* same spacing as hero-wrap */
  display: flex;
  align-items: center;       /* vertically center image and list */
  justify-content: center;   /* horizontally center content */
  gap: 48px;
  flex-wrap: wrap;           /* stack nicely on smaller screens */
  box-sizing: border-box;    /* consistent padding behavior */
}


.content-wrap img {
  max-width: 600px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.reasons-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 520px;
}

.reasons-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.checkmark {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--brand);
  display: grid;
  place-items: center;
  margin-top: 4px;
}

.checkmark svg {
  width: 14px;
  height: 14px;
  stroke: #fff;
  stroke-width: 3;
  fill: none;
}