/* Service Card Images */
.service-card-image {
  width: 100%;
  max-width: 260px;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  margin: 0 auto 1rem auto;
  display: block;
}

/* Hero Image */
.hero-image {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Profile Image */
.profile-image {
  width: 100%;
  max-width: 300px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
}

/* Blog Article Images */
.article-image {
  width: 100%;
  max-width: 800px;
  border-radius: 12px;
  margin: 2rem 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive Images */
@media (max-width: 768px) {
  .service-card-image {
    height: 150px;
  }
  
  .hero-image {
    max-width: 100%;
    margin-top: 2rem;
  }
}
