/* ─── Content Section Wrapper ────────────────────────────────── */
.content-page-section {
  padding: 40px 0;
}

@media (min-width: 768px) {
  .content-page-section {
    padding: 50px 0;
  }
}

/* ─── Content Body ───────────────────────────────────────────── */
.content-body {
  max-width: 100%;
}

/* ─── Intro Paragraph ────────────────────────────────────────── */
.content-intro {
  font-size: 0.875rem;
  font-weight: 500;
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .content-intro {
    font-size: 1rem;
  }
}

/* ─── Content Section Block ──────────────────────────────────── */
.content-section-block {
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .content-section-block {
    margin-bottom: 2rem;
  }
}

/* ─── Section Heading ────────────────────────────────────────── */
.content-section-heading {
  font-size: 1.25rem;
  font-weight: 700;
  color: #3E5EC0;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .content-section-heading {
    font-size: 1.5rem;
  }
}

.content-section-heading--sm {
  font-size: 1.125rem;
}

@media (min-width: 768px) {
  .content-section-heading--sm {
    font-size: 1.25rem;
  }
}

/* ─── Section Paragraphs ─────────────────────────────────────── */
.content-section-body {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.content-p {
  font-size: 0.875rem;
  font-weight: 500;
  color: #4b5563;
  line-height: 1.8;
}

@media (min-width: 768px) {
  .content-p {
    font-size: 1rem;
  }
}

.content-p a {
  color: #3E5EC0;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.content-p a:hover {
  color: #253a7b;
}

/* ─── Bullet List inside Content ─────────────────────────────── */
.content-list {
  list-style: disc;
  padding-inline-start: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.content-list li {
  font-size: 0.875rem;
  font-weight: 500;
  color: #4b5563;
  line-height: 1.8;
}

@media (min-width: 768px) {
  .content-list li {
    font-size: 1rem;
  }
}

/* ─── Customer Service Box ───────────────────────────────────── */
.content-highlight-box {
  background-color: #f9fafb;
  padding: 1.5rem;
  border-radius: 0.5rem;
}

.content-highlight-email {
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
  color: #4b5563;
  margin-bottom: 1rem;
  word-break: break-all;
  text-decoration: none;
}

.content-highlight-email:hover {
  color: #3E5EC0;
}

@media (min-width: 768px) {
  .content-highlight-email {
    font-size: 1.25rem;
  }
}