.checklist__inner {
  background: var(--color-second);
}
.checklist__title {
  color: var(--color-dark);
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
}
.checklist__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0;
  list-style: none;
}
.checklist__item {
  display: flex;
  align-items: center;
  background: var(--color-base);
  border: 1px solid var(--color-border);
  border-radius: 0.375rem;
  color: var(--color-text);
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .checklist {
    margin-top: 5rem;
    padding: 0 1.5rem;
  }
  .checklist__inner {
    max-width: 1296px;
    margin: 0 auto;
    padding: 2.5rem 3rem;
    border-radius: 0.75rem;
  }
  .checklist__title {
    font-size: 1.5rem;
  }
  .checklist__list {
    margin-top: 1.5rem;
  }
  .checklist__item {
    gap: 1.5rem;
    padding: 1.5rem 2.5rem;
    font-size: 1.25rem;
    line-height: 2.2;
  }
}
@media screen and (max-width: 767px) {
  .checklist {
    margin-top: 2.5rem;
  }
  .checklist__inner {
    padding: 2rem 1.5rem;
  }
  .checklist__title {
    font-size: 1.125rem;
  }
  .checklist__list {
    margin-top: 1rem;
  }
  .checklist__item {
    gap: 1rem;
    padding: 1.5rem 1.25rem;
    font-size: 0.9375rem;
    line-height: 2;
  }
  .checklist__item__icon {
    width: 2.25rem;
    height: auto;
  }
}

.step-content {
  display: flex;
  flex-direction: column;
}
.step-content__item {
  display: flex;
  background: var(--color-second);
  overflow: hidden;
}
.step-content__label {
  font-family: "Poppins", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-blue);
  color: var(--color-base);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
.step-content__value {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: var(--color-text);
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .step-content {
    gap: 1rem;
    margin-top: 2rem;
  }
  .step-content__item {
    min-height: 6.25rem;
    border-radius: 0.75rem;
  }
  .step-content__label {
    width: 10rem;
    font-size: 1rem;
  }
  .step-content__value {
    padding: 1.5rem 2rem;
    font-size: 1rem;
    line-height: 2.2;
  }
}
@media screen and (max-width: 767px) {
  .step-content {
    gap: 0.5rem;
    margin-top: 1.5rem;
  }
  .step-content__item {
    min-height: 6.75rem;
    border-radius: 0.625rem;
  }
  .step-content__label {
    width: 5.5rem;
    font-size: 0.875rem;
  }
  .step-content__value {
    padding: 1.5rem 1.5rem 1.5rem 1rem;
    font-size: 0.9375rem;
    line-height: 2;
  }
}

@media screen and (min-width: 768px) {
  .section__small-title:first-of-type {
    margin-top: 3.5rem;
  }
  .section__small-title + .section__text {
    margin-top: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .section__small-title:first-of-type {
    margin-top: 2.5rem;
  }
  .section__small-title + .section__text {
    margin-top: 1rem;
  }
}
@media screen and (min-width: 768px) {
  .column-section {
    display: flex;
    align-items: center;
    margin: 7.5rem auto 0;
  }
  .column-section__column {
    flex: 1;
  }
  .column-section__column--text {
    padding: 0 3.75rem 0 1.5rem;
  }
  .column-section__column__inner {
    max-width: 588px;
    margin-left: auto;
  }
  .column-section__image {
    border-radius: 0.375rem 0 0 0.375rem;
  }
}
@media screen and (max-width: 767px) {
  .column-section {
    margin-top: 5rem;
    padding: 0 1.5rem;
  }
  .column-section__image {
    width: calc(100% + 3rem);
    max-width: none;
    margin: 1.5rem -1.5rem 0;
  }
}
