.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}
.brand-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
}
<div class="soap-image">
  <img src="${soap.image}" alt="${soap.name}" class="soap-img">
</div>
.workshop-image {
  width: 100%;
  max-width: 800px;
  margin: 2rem auto;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid var(--accent);
}

.workshop-image img {
  width: 100%;
  height: auto;
  display: block;
}
.about-photo {
  width: 120px;
  height: 120px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--accent);
  box-shadow: 0 4px 12px rgba(184, 134, 11, 0.3);
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}