.responsive-row {
  align-items: flex-start;
  gap: 0;
  margin: 0 20px;
  position: relative;
}
.stepper-connector::before {
  content: '';
  position: absolute;
  top: 95px;
  left: 95px;
  right: 95px;
  height: 3px;
  background: repeating-linear-gradient(to right, #01d17a 0, #01d17a 4px, transparent 4px, transparent 12px);
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .stepper-connector::before {
    top: 60px;
    left: 50%;
    right: auto;
    width: 3px;
    height: auto;
    bottom: 60px;
    background: repeating-linear-gradient(to bottom, #88ffae 0, #76f89d 4px, transparent 4px, transparent 12px);
    transform: translateX(-50%);
  }
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  padding: 20px 0;
  min-height: 300px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .step {
    width: 90%;
    margin: 0 auto;
    padding: 40px 0;
  }
}
.step .image-wrapper {
  position: relative;
  width: 150px;
  height: 150px;
  background-color: #ffffff;
  border-radius: 50% 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .step .image-wrapper {
    background-color: transparent;
    box-shadow: none;
  }
}
.step .image-wrapper .step-number-d {
  position: absolute;
  top: 0;
  left: -12px;
  width: 50px;
  height: 50px;
  background: #01d17a;
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .step .image-wrapper .step-number-d {
    display: none;
  }
}
.step .image-wrapper img {
  width: 70%;
  height: auto;
  object-fit: contain;
  border-radius: 0;
}
@media screen and (max-width: 768px) {
  .step .image-wrapper img {
    width: auto;
    height: 180px;
  }
}
@media screen and (max-width: 768px) {
  .step .step-mobile-l {
    background-color: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 100%;
    z-index: 6;
    position: relative;
  }
}
.step .step-mobile-l .step-number-m {
  display: none;
}
@media screen and (max-width: 768px) {
  .step .step-mobile-l .step-number-m {
    display: flex;
    position: absolute;
    top: -15px;
    left: 0;
    width: 45px;
    height: 45px;
    background: #01d17a;
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    z-index: 7;
  }
}
.step .step-title {
  font-size: 18px;
  font-weight: 700;
  color: #2055C8;
  padding: 10px 10px;
  border-radius: 7px;
}
@media screen and (max-width: 768px) {
  .step .step-title {
    font-size: 20px;
  }
}
.step .step-description {
  font-size: 16px;
  font-weight: 400;
  color: #5d5d5d;
}
.two-column-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  overflow: hidden;
  width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .two-column-box {
    flex-direction: column;
    text-align: left;
    padding: 15px 0 5px;
    align-items: flex-end;
  }
}
.two-column-box .txt {
  flex: 1;
  text-align: left;
  padding: 15px;
}
@media screen and (max-width: 768px) {
  .two-column-box .txt {
    text-align: left;
    padding: 5px 15px 0 20px;
    order: 1;
  }
}
.two-column-box .txt .a-heading {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .two-column-box .txt .a-heading {
    font-size: 24px;
  }
}
.two-column-box .txt span {
  padding: 15px 0 0;
  text-align: left;
}
.two-column-box .img {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}
@media screen and (max-width: 768px) {
  .two-column-box .img {
    width: 100%;
    order: 2;
    justify-content: flex-end;
    margin-top: -20px;
    padding: 0;
  }
}
.two-column-box .img img {
  max-width: 100%;
  max-height: 200px;
  object-fit: cover;
  border-radius: 7px;
}
@media screen and (max-width: 768px) {
  .two-column-box .img.img-1 {
    margin-right: 20px;
    margin-top: -50px;
  }
  .two-column-box .img.img-1 img {
    max-height: 220px;
  }
}
@media screen and (max-width: 768px) {
  .two-column-box .img.img-2 {
    margin-top: -45px;
    margin-right: 3px;
  }
  .two-column-box .img.img-2 img {
    max-height: 180px;
  }
}
@media screen and (max-width: 768px) {
  .two-column-box .img.img-3 {
    margin-right: 20px;
    margin-top: -40px;
  }
  .two-column-box .img.img-3 img {
    max-height: 200px;
  }
}
@media screen and (max-width: 768px) {
  .two-column-box .img.img-4 {
    margin-top: -40px;
    margin-right: 20px;
  }
  .two-column-box .img.img-4 img {
    max-height: 180px;
  }
}
/* Individual article styling */
.a-box {
  width: 290px;
  height: 330px;
  position: relative;
}
.a-box .a-img {
  width: 100%;
  height: 170px;
  overflow: hidden;
}
.a-box .a-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 7px 7px 0 0;
}
.a-box .a-content {
  padding: 10px 20px;
}
.a-box .a-content p,
.a-box .a-content h3,
.a-box .a-content h4,
.a-box .a-content h5,
.a-box .a-content h6 {
  margin: 0;
}
.a-box .btn-a {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px 15px;
  font-size: 18px;
}
.a-heading {
  font-size: 20px;
  font-weight: 700;
  color: #204f9f;
}
.a-text {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: #242424;
}
/* Keyword styling */
.keywords {
  display: block;
  margin: 0 auto;
  width: 80%;
  font-size: 23px;
  font-weight: 700;
}
.keywords p {
  display: inline;
  margin: 10px;
  padding: 5px;
  border-radius: 4px;
  font-size: 18px;
  line-height: 2.2;
  white-space: nowrap;
}
