section.centered-content-section {
  padding-top: 64px;
  padding-bottom: 64px;
  padding-left: clamp(16px, 4%, 123px);
  padding-right: clamp(16px, 4%, 123px);
  width: 100%;
}
section.centered-content-section .content-container {
  max-width: 1440px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  text-align: center;
}
section.centered-content-section .content-container .image-wrapper img {
  max-width: 100% !important;
  height: auto;
}
section.centered-content-section .content-container .image-wrapper.after {
  order: 1;
}
section.centered-content-section .content-container .text-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
section.centered-content-section .content-container .title-wrapper h2 {
  color: #F46E15;
  font-size: 30px;
  line-height: 38px;
  font-weight: 700;
}
section.centered-content-section .content-container .subtitle-wrapper h3 {
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
}
section.centered-content-section .content-container .text-wrapper {
  padding: 8px 0;
}
section.centered-content-section .content-container .text-wrapper p {
  color: #475467;
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  max-width: 900px;
}
section.centered-content-section .content-container .button-wrapper {
  display: flex;
  gap: 20px;
}
@media (min-width: 1440px) {
  section.centered-content-section {
    padding: 80px 123px;
  }
  section.centered-content-section .content-container {
    gap: 32px;
  }
  section.centered-content-section .content-container .title-wrapper h2 {
    font-size: 36px;
    line-height: 44px;
  }
}