.frame-five {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 48px 0 48px 0;
}

.frame-five__title-container {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-bottom: -38px;
  z-index: 2;
  position: relative;
}

.frame-five__title {
  background: #7a1fa2;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  border-radius: var(--rounded-full);
  padding: 14px 44px 14px 44px;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.04);
  text-align: center;
  margin: 0;
  display: inline-block;
}

.frame-five__features {
  background: var(--gray);
  border-radius: var(--rounded-full);
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.25);
  display: flex;
  justify-content: center;
  gap: 56px;
  padding: 61px 106px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.frame-five__feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 160px;
}

.frame-five__icon-circle {
  background: #7a1fa2;
  border-radius: 50%;
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.08);
  margin-bottom: 12px;
}

.frame-five__icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.frame-five__text {
  color: #333;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.2;
  margin-top: 0;
}

@media (max-width: 900px) {
  .frame-five__features {
    gap: 24px;
    padding: 36px 8px 24px 8px;
  }
  .frame-five__icon-circle {
    width: 70px;
    height: 70px;
  }
  .frame-five__icon {
    width: 36px;
    height: 36px;
  }
  .frame-five__title {
    font-size: 1.3rem;
    padding: 10px 24px;
    border-radius: 20px;
  }
}

@media (max-width: 600px) {
  .frame-five__features {
    flex-direction: column;
    gap: 18px;
    width: 90%;
    border-radius: 32px;
    padding: 24px 4px 12px 4px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
  }
  .frame-five__feature {
    width: 100%;
  }
  .frame-five__icon-circle {
    width: 60px;
    height: 60px;
  }
  .frame-five__icon {
    width: 28px;
    height: 28px;
  }
  .frame-five__title {
    font-size: var(--font-size-lg);
    padding: 8px 12px;
  }
  .frame-five__title-container {
    margin-bottom: 20px;
  }
}
