.features {
  padding: 0 0 0;
  position: relative;
  z-index: 10;
}

.features__card {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 46px rgba(0, 0, 0, 0.18);
  display: flex;
  align-items: stretch;
  padding: 40px 48px;
  gap: 1rem;
  margin-bottom: -80px;
}

.features__item {
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.features__icon {
  flex-shrink: 0;
  width: 80px;
}

.features__icon img {
  width: 80px;
  height: auto;
  object-fit: contain;
}

.features__text {
}

.features__title {
  font-family: "Rubik", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--royal-purple);
  margin-bottom: 10px;
  line-height: 1.3;
}

.features__desc {
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  color: var(--text-dark);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .features__card {
    flex-direction: column;
    padding: 32px 24px;
    gap: 24px;
    margin-bottom: -20px;
  }

  .features__divider {
    width: 100%;
    height: 1px;
  }
}

@media (max-width: 480px) {
  .features__card {
    transform: translateY(-20px);
  }
}
