/* Service Flow Section - RWD Styles */
.service-flow-section {
  padding: 80px 0;
  background-color: #f8f9fa;
  background:white;
}

.service-flow-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.service-flow-header {
  text-align: center;
  margin-bottom: 60px;
}

.service-flow-header .section-title {
  font-size: 36px;
  font-weight: 600;
  color: #333;
  margin-bottom: 0;
}

.service-flow-content {
  display: flex;
  flex-direction: row;
  gap: 60px;
  align-items: flex-start;
}

.service-flow-image-wrapper {
  flex: 0 0 40%;
  position: sticky;
  top: 100px;
}

.service-flow-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
}

.service-flow-steps {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.service-flow-step {
  display: flex;
  align-items: flex-start;
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-flow-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.step-number {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  margin-right: 20px;
}

.step-content {
  flex: 1;
}

.step-content p {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  color: #555;
}

.step-content strong {
  color: #333;
  font-weight: 600;
}

/* Tablet styles */
@media screen and (max-width: 991px) {
  .service-flow-section {
    padding: 60px 0;
  }

  .service-flow-header .section-title {
    font-size: 32px;
  }

  .service-flow-content {
    flex-direction: column;
    gap: 40px;
  }

  .service-flow-image-wrapper {
    position: relative;
    top: 0;
    flex: none;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }

  .service-flow-steps {
    gap: 25px;
  }

  .service-flow-step {
    padding: 20px;
  }

  .step-number {
    width: 45px;
    height: 45px;
    font-size: 22px;
  }
}

/* Mobile styles */
@media screen and (max-width: 767px) {
  .service-flow-section {
    padding: 40px 0;
  }

  .service-flow-container {
    padding: 0 15px;
  }

  .service-flow-header {
    margin-bottom: 40px;
  }

  .service-flow-header .section-title {
    font-size: 24px;
    line-height: 1.3;
  }

  .service-flow-content {
    gap: 30px;
  }

  .service-flow-steps {
    gap: 20px;
  }

  .service-flow-step {
    flex-direction: column;
    padding: 20px;
    text-align: center;
  }

  .step-number {
    width: 40px;
    height: 40px;
    font-size: 20px;
    margin-right: 0;
    margin-bottom: 15px;
  }

  .step-content p {
    font-size: 14px;
    line-height: 1.7;
  }
}

/* Small mobile styles */
@media screen and (max-width: 479px) {
  .service-flow-section {
    padding: 30px 0;
  }

  .service-flow-header .section-title {
    font-size: 20px;
  }

  .service-flow-step {
    padding: 15px;
  }

  .step-number {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }

  .step-content p {
    font-size: 13px;
  }
}