.homepage-section--service-list .homepage-sections-wrapper {
  padding-bottom: 0;
}
.service-list-with-bg {
  position: relative;
  display: flex;
  align-items: center;
}
.service-list-with-bg .container {
  position: relative;
  z-index: 2;
}
.section-height--small {
  min-height: 400px;
}
.section-height--medium {
  min-height: 600px;
}
.section-height--large {
  min-height: 800px;
}
.section-height--xlarge {
  min-height: 100vh;
}
.section-height--adapt {
  min-height: auto;
  padding: 80px 0;
}
.nutrition-card {
  background-color: #fff;
  border-radius: 30px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  max-width: 450px;
  margin: 0 auto;
  text-align: center;
}
.nutrition-card__heading {
  font-size: 42px;
  font-weight: 900;
  text-transform: uppercase;
  margin: 0 0 12px;
  color: #000;
}
.nutrition-card__tag {
  display: inline-block;
    padding: 8px 24px;
    border-radius: 100px;
    font-size: 16px;
    line-height: 1.3;
    margin-bottom: 35px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: var(--header-font-family);
}
.nutrition-table {
  width: 100%;
  border-collapse: collapse;
}
.nutrition-row {
  border-bottom: 1px solid #e5e5e5;
}
.nutrition-row:last-child {
  border-bottom: none;
}
.nutrition-label,
.nutrition-value {
  padding: 12px 0;
  font-size: 16px;
  line-height: 1.5;
}
.nutrition-label {
  text-align: left;
  color: #333;
  font-weight: 500;
}
.nutrition-value {
  text-align: right;
  color: #333;
}
.nutrition-badges {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding-top: 30px;
  border-top: 1px solid #e5e5e5;
}
.nutrition-badge {
  width: auto;
  object-fit: contain;
}
.h-100 {
  height: 100%;
}
@media screen and (max-width: 767px) {
  .section-height--small {
    min-height: 300px;
  }
  .section-height--medium {
    min-height: 500px;
  }
  .section-height--large {
    min-height: 700px;
  }
  .section-height--adapt {
    padding: 60px 0;
  }
  .nutrition-card {
    padding: 35px 25px 30px;
  }
  .nutrition-card__heading {
    font-size: 32px;
    margin-bottom: 15px;
  }
  .nutrition-card__tag {
    font-size: 14px;
    padding: 8px 20px;
    margin-bottom: 25px;
  }
  .nutrition-label,
  .nutrition-value {
    font-size: 16px;
    padding: 12px 0;
  }
  .nutrition-badges {
    gap: 20px;
    padding-top: 20px;
  }
  .nutrition-badge {
    height: 45px;
  }
}
