.three-col-section-title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: #023049;
  text-align: center;
  line-height: 1.4;
  margin-bottom: 22px;
}

.three-col-section-grid {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.three-col-section-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}

.three-col-section-col-header {
  display: flex;
  gap: 20px;
  align-items: center;
  width: 100%;
}

.three-col-section-col img {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
  object-fit: contain;
}

.three-col-section-col h4 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #023049;
  line-height: 1.4;
}

.three-col-section-col p {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #000;
  line-height: 1.5;
  text-align: left;
}
@media (max-width: 991px) {
  .three-col-section-grid {
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
  }

  .three-col-section-col {
    flex: 0 0 calc(50% - 16px);
  }
}
@media (max-width: 768px) {
  /* Modern retail */
  .three-col-section-title {
    font-size: 26px;
  }

  .three-col-section-col {
    flex: 0 0 100%;
  }

  .three-col-section-col h4 {
    font-size: 20px;
  }
  .three-col-section-col p {
    text-align: left;
  }
}
@media (max-width: 480px) {
  /* Modern retail */

  .three-col-section-title {
    font-size: 22px;
    margin-bottom: 24px;
  }

  .three-col-section-col h4 {
    font-size: 18px;
  }

  .three-col-section-col p {
    font-size: 14px;
  }

  .three-col-section-col img {
    width: 48px;
    height: 48px;
  }
  .three-col-section-grid {
    gap: 20px;
  }
  .three-col-section-col {
    gap: 12px;
  }
}
@media (max-width: 320px) {
  .three-col-section-title {
    font-size: 17px !important;
    line-height: 1.35 !important;
  }
  .three-col-section-col h4,
  .three-col-section-col p {
    font-size: 13px !important;
    line-height: 1.5 !important;
  }
}
