.custom-swiper-container {
  width: 100%;
  padding: 40px 0;
}
.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}
.slide-content {
  display: flex;
  flex-direction: row-reverse; /* image left, text right */
  align-items: center;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
  padding: 20px;
  text-align: left;
}
.slide-image img {
  max-width: 250px;
  width: 100%;
  height: auto;
  border-radius: 10px;
}
.slide-text {
  max-width: 600px;
}
.slide-text h2 {
  font-size: 28px;
  margin-bottom: 10px;  font-weight: bold;
}
.slide-text p {
  font-size: 16px;
  margin-bottom: 15px;

}
.slide-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #c8735a;
  color: white;
  text-decoration: none !important;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s;
}
.slide-button:hover {
  background-color: #fff;
  border: #c8735a 2px solid ;
}

/* responsive: image on top, text below */
@media (max-width: 768px) {
  .slide-content {
    flex-direction: column;
    text-align: center;
  }
  .slide-text {
    text-align: center;
  }
}