body {
font-family: 'Montserrat', 'sans-serif';
  background: #f5f5f5;
  margin: 0;
}


.services {
  padding: 60px 20px;
  text-align: center;
}

.title {
  font-size: 36px;
  color: #000000;
  margin-bottom: 10px;
}

.subtitle {
  color: #6b6b6b;
  margin-bottom: 40px;
}

.container {
  max-width: 1300px;
  margin: auto;
}

.cards {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  justify-content: center;
}

.card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  width: 320px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card h3 {
  color: #4d0505;
  padding: 15px;
}

.card p {
  padding: 0 15px 20px;
  color: #555;
}

.btn {
  display: inline-block;
  background: #4d0505;
  color: white;
  padding: 12px 20px;
  margin-bottom: 20px;
  border-radius: 5px;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  background: #244947;
}

.card:hover {
  transform: translateY(-8px);
}