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

body {
  background: #ffffff;
}

.services {
  text-align: center;
  padding: 60px 20px;
}

.services h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.subtitle {
  color: #888;
  margin-bottom: 50px;
}

.service-list {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.service-card {
  width: 300px;
  background: #fff;
  padding: 40px 25px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  border-radius: 4px;
}

.icon {
  width: 90px;
  height: 90px;
  border: 2px solid #f4a742;
  border-radius: 50%;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: #f4a742;
}

.service-card h3 {
  margin-bottom: 15px;
}

.service-card p {
  font-size: 14px;
  color: #777;
  margin-bottom: 25px;
  line-height: 1.6;
}

.service-card button {
  background: #f4a742;
  border: none;
  color: #fff;
  padding: 10px 25px;
  cursor: pointer;
  font-size: 14px;
}

.service-card button:hover {
  background: #e08f28;
}
