.elite-services-section {
    padding: 60px 20px;
    width: 95%;
    margin: auto;
}

.elite-services-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 30px;
}

.elite-services-image {
  flex: 1 1 45%;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.elite-services-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.elite-services-content {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.services-title {
  color: #00a0f0;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 30px;
  text-align: right;
}

.service-card {
  display: flex;
  align-items: flex-start;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  padding: 20px 25px;
  margin-bottom: 20px;
  position: relative;
  transition: transform 0.2s ease;
}

.service-card:hover {
  transform: translateY(-3px);
}

.service-number {
  background-color: #00b5f1;
  color: white;
  font-weight: bold;
  font-size: 16px;
  padding: 12px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  text-align: center;
  line-height: 20px;
  margin-left: 20px;
  flex-shrink: 0;
}

.service-info {
  flex: 1;
}

.service-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #222;
}

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

@media (max-width: 768px) {
  .elite-services-container {
    flex-direction: column;
  }

  .elite-services-image,
  .elite-services-content {
    flex: 1 1 100%;
  }

  .services-title {
    text-align: center;
  }
}
