/* === Container Wrapper === */
.list-line-block {
  background-color: #f7f7f7;
  padding: 106px 20px;
  border-radius: 16px;
  text-align: center;
}

/* === Title === */
.list-line-block .list-title {
  font-family: Poppins, sans-serif;
  font-weight: 600;
  font-style: italic;
  font-size: 40px;
  line-height: 46px;
  letter-spacing: 0;
  text-align: center;
  color: #004855;
}

.list-line-block .list-highlighted {
  color: #37AFB1;
  font-style: normal;
}

/* === Short Description === */
.list-line-block .list-short-description {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  text-align: center;
  color: #425962;
  max-width: 864px;
  margin: 0 auto 30px;
}



/* === Inline List === */
.list-line-block .list-inline-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 20px; /* ⬅️ Increased gap: row 20px, column 32px */
  padding: 0;
  margin: 0 auto 40px; /* ⬅️ Increased bottom margin */
  max-width: 1200px; /* ⬅️ Optionally increased max width */
  list-style: none;
}

.list-line-block .list-inline-items li {
  display: inline-flex;
  align-items: center;
  gap: 8px; /* ⬅️ Slightly more gap between icon and text */
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #425962;
  border-radius: 30px;
  position: relative;
}

.btn-container .btn-new {
    background-color: #1B262A;
    font-family: Poppins;
    font-weight: 500;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    text-transform: uppercase;
    color: #FFFFFF;
    border-radius: 40px;
    padding: 16px;
    margin-top:40px;
}






/* === Responsive === */
@media (max-width: 768px) {
  .list-line-block .list-inline-items {
    justify-content: center;
    gap: 8px;
  }

  .list-line-block .list-inline-items li {
    font-size: 15px;
    line-height: 22px;
    padding: 6px 12px 6px 10px;
  }

  .list-line-block .list-title {
    font-size: 30px;
    line-height: 36px;
  }

  .list-line-block .list-short-description {
    font-size: 16px;
    line-height: 24px;
  }
}
