body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  color: #333; /* Dark grey text */
  background-color: #ffffff; /* Light background */
}

h1 {
  color: #292929;
  margin: 0;
  padding: 0;
  line-height: 1.2;
  font-weight: 500;
  font-size: 1.2rem;
}

i {
  display: flex;
  color: #969696;
  width: 25px;
}

i svg {
  width: 100%;
  height: 100%;
}

#logo img {
  max-width: 40px;
  border-radius: 50%;
  padding: 10px;
}

#banner {
  background: #f4f4f4;
  padding: 10px;
}

#banner .content {
  display: flex;
  align-items: center;
  gap: 10px;
}

h2 {
  color: #494949;
  font-weight: 300;
  font-size: 1.2rem;
  margin: 0;
  padding: 0;
}

header {
  display: flex;
  flex-direction: column;
}

p {
  margin: 0;
  color: #171717;
  font-weight: 400;
}

a {
  color: #1f1f1f;
  text-decoration-style: dotted;
}

#contact-info {
  padding: 40px;
}

#contact-info .content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.badge {
  display: flex;
  align-items: center;
  gap: 15px;
}

.badge p {
  font-weight: 500;
  letter-spacing: 0.07rem;
}

#carousel {
  position: relative;
  height: 450px;
  object-fit: cover;
  border-radius: 8px;
  overflow: hidden;
}

strong {
  font-weight: 500;
}

#about {
  padding: 40px;
}

#images {
  padding: 40px;
  padding-top: 0;
}

#about .content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.content {
  max-width: 840px;
  width: 100%;
  margin: 0 auto;
}

#treatments {
  background: #f4f4f4;
  padding: 40px;
}

#treatments .content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#carouselImage {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  width: 100%;
  height: 100%;
}

.circle-button {
  width: 40px;
  height: 40px;
  padding: 1.5rem;
  cursor: pointer;
}

#prevBtn {
  left: 10px;
}

li strong {
  display: block;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 15px;

  .item {
    .icon {
      content: url('./marker.png');
      width: 30px;
      height: 30px;
      opacity: 0.3;
      margin-top: 2px;
    }

    .text {
      strong {
        display: block;
      }
    }

    display: flex;
    gap: 15px;
  }
}

#nextBtn {
  right: 10px;
  transform: rotate(180deg);
}