* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

.what-we-do-services-section {
  padding: 80px 20px;
  text-align: center;
  background: #0f0f0f;
  color: #fff;
}

.what-we-do-container {
  max-width: 1100px;
  margin: auto;
}

.what-we-do-section-title {
  font-size: 2.5rem;
  margin-bottom: 50px;
}

.what-we-do-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.what-we-do-card {
  background: #1a1a1a;
  padding: 30px;
  border-radius: 12px;
  text-align: left;
  transform: translateY(40px);
  opacity: 0;
  transition: all 0.6s ease;
}

.what-we-do-card h3 {
  margin-bottom: 15px;
  color: #facc15;
}

.what-we-do-card ul {
  list-style: none;
}

.what-we-do-card li {
  margin-bottom: 10px;
}

/* Animation */
.what-we-do-fade-in.show {
  transform: translateY(0);
  opacity: 1;
}

.what-we-do-delay {
  transition-delay: 0.2s;
}

/* Responsive */
@media (max-width: 768px) {
  .what-we-do-grid {
    grid-template-columns: 1fr;
  }

  .what-we-do-section-title {
    font-size: 2rem;
  }
}
