body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #f9f9f9;
  color: #333;
}

.main-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-title {
  font-size: 32px;
  font-weight: bold;
  color: #222;
  margin-bottom: 30px;
  text-align: center;
}

.services-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.services-list li {
  margin-bottom: 20px;
  background-color: #fff;
  border-left: 6px solid #ffd700;
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  transition: transform 0.2s ease;
}

.services-list li:hover {
  transform: translateY(-2px);
}

.services-list a {
  text-decoration: none;
  color: #000;
  font-size: 18px;
  font-weight: bold;
}

.services-list a:hover {
  color: #d32f2f;
}
