.premium-service-section {
  padding-top: 80px;
  padding-bottom: 40px;
  /* background: linear-gradient(to bottom, #f8f9fa, #ffffff); */
  background: #ffffff ;
}

.service-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin: 0 auto;
}

.service-item {
  background: #f8fafc;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
}

.service-item:hover {
      /* background: white; */
      box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
      border-color: #cbd5e1;
    }

.service-icon {
  width: 60px;
  height: 60px;
  background: rgba(45, 158, 252, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #333;
}

.service-desc {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .service-features {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 15px;
  }
  
  /* .premium-service-section {
    padding: 80px 0;
  } */
}

@media (min-width: 769px) and (max-width: 1024px) {
  .service-features {
    gap: 20px;
  }
}