.features-section {
  background: #f4f8fb; /* Lighter background for a clean and modern feel */
  padding: 10rem 2rem;
  text-align: center;
}

.features-title {
  font-size: 3.5rem;
  color: #333;
  font-weight: 700;
  margin-bottom: 2rem;
}

.features-title .highlight {
  color: #0056ff;
  text-transform: uppercase;
}

.features-subtitle {
  font-size: 1.8rem;
  color: #555;
  margin-bottom: 5rem;
  line-height: 1.5;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Adjusted for better layout */
  gap: 4rem;
  max-width: 1000px;
  margin: 0 auto;
}

.feature-item {
  background: white;
  padding: 3rem;
  border-radius: 1.5rem;
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
}

.feature-item:hover {
  transform: translateY(-1.5rem);
}

.feature-icon img {
  width: 7rem;
  height: 7rem;
  margin-bottom: 2rem;
}

.feature-item h3 {
  font-size: 1.8rem;
  color: #222;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.feature-item p {
  font-size: 1.4rem;
  color: #666;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .features-grid {
      grid-template-columns: 1fr;
      gap: 3rem;
  }

  .features-title {
      font-size: 2.8rem;
  }

  .features-subtitle {
      font-size: 1.4rem;
  }
}
