body {
  font-family: Arial, sans-serif;
  background-color: #e0e7f1;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  flex-direction: column;
}

.container {
  text-align: center;
  padding: 20px;
  max-width: 1200px;
  width: 100%;
}

h1 {
  color: #ff0077;
  font-size: 2.5em;
  margin: 0;
}

h2 {
  color: #a3a3a3;
  font-size: 1.2em;
  margin: 0 0 20px 0;
}

.filter-buttons {
  margin-bottom: 20px;
}

.filter-btn {
  background-color: #ff0077;
  color: white;
  border: none;
  padding: 10px 20px;
  margin: 5px;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.filter-btn:hover {
  background-color: #e6006e;
}

.filter-btn.active {
  background-color: #d4005e;
}

.services {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.service-item {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  width: 200px;
  height: 300px;
  text-align: center;
  transition: transform 0.3s ease;
}

.service-item:hover {
  transform: translateY(-10px);
}

.service-item img {
  width: 50%;
  height: 40%;
  border-radius: 10px;
  margin-bottom: 15px;
}

.service-item h3 {
  margin-top: 0;
}

.service-item button {
  background-color: #333;
  color: white;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 5px;
}

.service-item button:hover {
  background-color: #555;
}

@media (max-width: 768px) {
  .service-item {
      width: 70%;
  }
}
