.yichen-service-features {
  padding: var(--component-gap) 0;
}

.yichen-service-features__header {
  text-align: center;
}

.yichen-service-features__title {
  font-size: var(--title-size-h2);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.yichen-service-features__subtitle {
  font-size: var(--title-size-h3);
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-top: 6px;
}

.yichen-service-features__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 44px;
  margin-top: 50px;
}

.yichen-service-features__card {
  display: flex;
  width: calc((100% - 44px) / 2);
  align-items: center;
  gap: 32px;
  
  padding: 60px 40px;
  background: #e2e2e2;
  border-radius: 120px;
}

.yichen-service-features__icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
}

.yichen-service-features__icon svg {
  width: 100%;
  height: 100%;
}

.yichen-service-features__content {
  flex: 1;
}

.yichen-service-features__content p {
  font-size: var(--text-flag-size);
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.yichen-service-features__card-desc2{
  margin-top: 4px;
}

.yichen-service-features__footer {
  margin-top: 50px;
  text-align: center;
}

.yichen-service-features__footer-text {
  font-size: var(--title-size-h3);
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

@media screen and (max-width: 1200px) {
  .yichen-service-features__card {
    padding: 40px 32px;
  }
}

@media screen and (max-width: 992px) {
  .yichen-service-features__grid {
    gap: 32px;
    margin-top: 30px;
  }
  .yichen-service-features__card {
    width: calc((100% - 32px) / 2);
    gap: 24px;

    padding: 32px 24px;
    border-radius: 50px;
  }
  .yichen-service-features__icon {
    width: 40px;
    height: 40px;
  }
  .yichen-service-features__footer {
    margin-top: 30px;
  }
}

@media screen and (max-width: 768px) {
  .yichen-service-features__grid {
    margin-top: 30px;
  }
  .yichen-service-features__card {
    width: 100%;
    gap: 16px;
  }
  .yichen-service-features__icon {
    width: 36px;
    height: 36px;
  }
}

@media screen and (max-width: 576px) {
  .yichen-service-features__grid {
    margin-top: 20px;
  }
  .yichen-service-features__card {
    gap: 12px;
    padding: 24px 16px;
  }
  .yichen-service-features__footer {
    margin-top: 20px;
  }
}