.installation-steps-container {
  background-color: #f4f4f4;
}
.installation-guide-block {
  text-align: center;
  padding: 64px 30px;
  max-width: 1400px;
  margin: 0 auto;
}

.installation-guide-title {
  font-size: 42px;
  margin-bottom: 20px;
  font-weight: 600;
  color: #000;
  text-align: center;
}

.installation-guide-intro {
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

.installation-guide-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 30px;
}

/* Line connecting the steps */
.installation-guide-steps::before {
  content: "";
  position: absolute;
  top: 50px;
  left: 15%;
  right: 15%;
  height: 1px;
  background-color: #000;
  z-index: 1;
}

.step-container {
  flex: 1;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 15px;
  max-width: 400px;
}

.step-image-container {
  width: 100px;
  margin-bottom: 20px;
  border-radius: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.step-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}

.step-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f5f5f5;
}

.step-title {
  font-size: 24px;
  margin-bottom: 10px;
  font-weight: 500;
  color: #333;
}

.step-description {
  font-size: 16px;
  line-height: 1.5;
  color: #666;
  text-align: center;
  margin-bottom: 0!important;
}

/* Responsive styles */
@media (max-width: 768px) {
  .installation-guide-block {
    padding: 48px 16px;
  }
  .step-container {
    margin-bottom: 40px;
    max-width: 100%;
  }

  .installation-guide-title {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .installation-guide-steps {
    flex-direction: column;
    align-items: center;
  }
  .installation-guide-steps::before {
    display: none;
  }
}
