/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', sans-serif;
  background-color: #fdfdfd;
  color: #333;
  line-height: 1.6;
  padding-top: 100px;
}

/* Why Choose Us Section */
.why-choose-us {
  padding: 0;
  background-color: #f7f7f7; /* unified background */
  width: 100vw;
  border: none; /* ensure no partition line */
}

.why-container {
  display: flex;
  width: 100%;
  height: auto;
  align-items: stretch;
  border-top: 2px solid #f7c948;    /* top border */
  border-bottom: 2px solid #f7c948; /* bottom border */
}


/* Left Image */
.why-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: stretch;
  overflow: hidden;
}

.why-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Right Content */
.why-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 40px;
  background: #f7f7f7; /* matches parent background */
}

/* Step Card */
.step-card {
  position: relative;
  background: white;
  border: 2px solid #f7c948;
  border-radius: 25px;
  padding: 45px 20px 25px 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  overflow: visible;
  margin-bottom: 50px;
}

/* Label */
.step-label {
  position: absolute;
  top: -25px;
  left: -20px;
  display: flex;
  align-items: center;
  z-index: 2;
}

.step-number {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 3px solid #f7c948;
  background-color: white;
  color: #2d2d62;
  font-weight: bold;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: -15px;
  z-index: 3;
  position: relative;
}

.step-title {
  background-color: #2d2d62;
  color: white;
  padding: 10px 20px 10px 30px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: bold;
  position: relative;
  z-index: 2;
}

.step-card p {
  font-size: 15.5px;
  color: #333;
  padding: 4px 20px 10px 20px;
  margin: 0;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 2000px) {
  .why-container {
    flex-direction: column;
  }
  .why-content {
    padding: 40px 20px;
  }
  .step-card {
    padding: 45px 15px 25px 25px;
  }
  .step-title {
    font-size: 15px;
  }
  .step-number {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
  .step-card p {
    font-size: 15px;
  }
}

@media (min-width: 1200px) and (max-width: 1800px) {
  .why-content {
    padding: 30px 20px;
  }
  .step-card {
    padding: 30px 15px 20px 15px;
    margin-bottom: 25px;
    border-radius: 20px;
  }
  .step-title {
    font-size: 14px;
    padding: 8px 15px 8px 25px;
  }
  .step-number {
    width: 32px;
    height: 32px;
    font-size: 13px;
  }
  .step-card p {
    font-size: 14px;
    line-height: 1.4;
  }
}
