/* Features List Block */
.features-list {
  width: 100%;
  max-width: 650px; /* Adjust max-width as needed */
  display: flex;
  flex-direction: column;
  gap: 35px; /* Space between feature items */
}

/* Feature Item Element */
.features-list__item {
  display: flex;
  align-items: flex-start; /* Align icon wrapper top with text */
  gap: 20px; /* Space between icon wrapper and text content */
}

/* Icon Wrapper Element */
.features-list__icon-wrapper {
  flex-shrink: 0; /* Prevent wrapper from shrinking */
  width: 55px; /* Approximate size from image */
  height: 55px; /* Approximate size from image */
  border-radius: 50%; /* Make it circular */
  background-color: #e6f7f0; /* Light green background */
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Icon Element (within wrapper) */
.features-list__icon {
  width: 24px; /* Adjust icon size as needed */
  height: 24px;
  fill: white;
  stroke: white;
  stroke-width: 1.5;
}

/* Text Content Element (holds title and description) */
.features-list__text-content {
  flex-grow: 1; /* Allow text to take remaining space */
}

/* Title Element */
.features-list__title {
  font-size: 1.2em; /* Adjust size */
  font-weight: 600; /* Semi-bold */
  color: #333a40; /* Dark text color */
  margin-top: 0;
  margin-bottom: 8px; /* Space below title */
  line-height: 1.4;
}

/* Description Element */
.features-list__description {
  font-size: 0.95em; /* Adjust size */
  color: #5f6b75; /* Gray text color */
  margin: 0;
  line-height: 1.6;
}
