#image-slider {
  height: 300px;
  position: relative;
  margin-bottom: 2rem;
}

.splide__slide img {
  height: 300px;
  object-fit: contain;
  object-position: center;
  width: 100%;
  display: block;
  background-color: white;
  margin: 0;
  padding: 0;
}

.splide__pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.splide__pagination__page {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  border: none;
  cursor: pointer;
}

.splide__pagination__page.is-active {
  background: #23651C;
  border: 1px solid #333;
}

@media (max-width: 768px) {
  #image-slider {
    height: 200px;
  }
  .splide__slide img {
    height: 200px;
  }
}

.slider-container {
  display: flex;
  justify-content: center;
  margin-top: 0;
}

.splide {
  max-width: 600px;
  width: 100%;
}

.intro-section {
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
}

.intro-text {
  flex: 1;
  min-width: 300px;
}

.intro-image {
  flex: 1;
  min-width: 300px;
}

.intro-image img {
  width: 100%;
  max-width: 400px;
}