* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #1f2f2f;
  background: #eef7f6;
}

.hero {
  text-align: center;
  padding: 4rem 1.5rem;
  background: #f2d7d5;
}

.hero {
  text-align: center;
  padding: 4rem 1.5rem;
  background: linear-gradient(135deg, #78c2ad, #5b8fd1);
  color: white;
}

.hero p {
  font-size: 1.25rem;
}

main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.intro,
.contact {
  background: white;
  padding: 1.5rem;
  border-radius: 18px;
  margin-bottom: 2rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}

.gallery {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 1.5rem;
}

.card {
  background: #f8ffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  background: #eee;
}

.card h3,
.card p {
  margin-left: 1rem;
  margin-right: 1rem;
}

.card p {
  margin-bottom: 1.25rem;
}

.contact-line {
  font-weight: bold;
}

footer {
  text-align: center;
  padding: 2rem;
  color: #4b6b6b;
}
.item-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem;
  padding: 0.35rem;
}

.item-images img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 12px;
}

.item-images img:first-child {
  grid-column: span 2;
  height: 260px;
}
.carousel {
  position: relative;
  width: 100%;
}

.carousel img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

.nav {
  position: absolute;

  top: 50%;
  transform: translateY(-50%);

  width: 42px;
  height: 42px;

  border: none;
  border-radius: 50%;

  background: rgba(0, 0, 0, 0.6);
  color: white;

  font-size: 1.3rem;
  cursor: pointer;

  z-index: 10;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

.nav:hover {
  background: rgba(0, 0, 0, 0.8);
}
.price {
  font-size: 1.1rem;
  font-weight: bold;
  color: #2d6a6a;
}