.step-gallery-wrap {
  margin: 30px 0;
  font-family: inherit;
}
.step-gallery-title {
  font-size: 20px;
  font-weight: 700;
  color: #111;
  margin: 0 0 18px;
}
.step-gallery-container {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #f7f8fa;
}
.step-main-image {
  position: relative;
  width: 100%;
}
.slide-item {
  display: none;
  width:100%;
}
.slide-item.active {
  display: block;
}
.slide-img {
  width: 100%;
  text-align: center; 
  background: #f7f8fa;
}
.slide-img img {
  width: auto;
  max-width: 100%;   
  max-height: 900px; 
  height: auto;
  display: inline-block;
}
.slide-text{
  padding: 18px 0;
  border-top:1px solid #eee;
  text-align: center;  
}
.slide-text h3 {
  margin:0 0 8px;
  font-size:17px;
}
.slide-text p {
  margin:0;
  font-size:15px;
  line-height:1.6;
  color:#444;
}
.step-arrow {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.95);
  color: #222;
  font-size:22px;
  cursor: pointer;
  z-index:3;
  box-shadow:0 2px 10px rgba(0,0,0,0.12);
}
.step-prev { left:12px; }
.step-next { right:12px; }
.step-dots{
  display:flex;
  gap:8px;
  justify-content:center;
  margin:14px 0 8px;
}
.dot{
  width:10px;
  height:10px;
  border-radius:50%;
  background:#ddd;
  cursor:pointer;
}
.dot.active{
  background:#333;
}
.img-count{
  text-align:right;
  font-size:14px;
  color:#666;
  margin-bottom:16px;
}
