.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
  background-color: rgba(255,255,255, 0.9);
}

.service-card {
  background-color: var(--card-bg);
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  margin-bottom: 2.5rem;
  padding: 2rem;
  border-right: 5px solid var(--primary-color);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card h2 {
  color: var(--primary-color);
  margin-top: 0;
  font-size: 1.8rem;
  border-bottom: 2px solid #f0f0f0;
  padding-bottom: 0.5rem;
}

.service-image {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 6px;
  margin: 1.5rem 0;
  display: block;
}

.service-description {
  font-size: 1.05rem;
  text-align: justify;
}
