/* Section Title */
.app-features__title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 2.5rem;
  color: #111;
}

/* Grid Layout */
.app-features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

/* Card Container */
.app-feature-card {
  background-color: #e7edfd;
  border-radius: 16px;
  margin-bottom: 50px;
  padding: 1.5rem;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.app-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

/* Image Wrapper - to center the image */
.app-feature-card__image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
}

/* Image */
.app-feature-card__image {
  width: 70px;
  height: 64px;
  object-fit: cover;
  border-radius: 100%;
  background-color: #ffffff;
  border: 2px solid #ddd;
}

/* Content */
.app-feature-card__content {
  text-align: center;
}

.app-feature-card__title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #222;
}

.app-feature-card__text {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

/* Responsive Typography */
@media (max-width: 600px) {
  .app-feature-card__title {
    font-size: 1.1rem;
  }

  .app-feature-card__text {
    font-size: 0.9rem;
  }
}


/* new  */
