/* Base styles */
.introduction {
  padding: 20px 0px 60px;
  background-color: #f9f9f9;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.introduction h2 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 2em;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.service-card h3 {
  font-size: 1.3em;
  margin-bottom: 15px;
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 15px;
}

.service-card p {
  font-size: 0.95em;
  line-height: 1.6;
}

/* Responsive tweaks */
@media (max-width: 600px) {
  

  .service-card img {
    height: 160px;
  }

  .introduction h2 {
    font-size: 1.5em;
  }
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* Force 1 column on mobile */
@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-card img {
    height: 160px;
  }

  .introduction h2 {
    font-size: 1.4em;
  }
}
