
.cta-section-inner {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
}

.cta-section-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cta-section-text h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: #023049;
  line-height: 1.4;
  margin-bottom: 0;
}

.cta-section-text p {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #000;
  line-height: 1.6;
}

.cta-section-text ul {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #000;
  line-height: 1.6;
}

.cta-section-img {
  flex: 0 0 37.5%;
  max-width: 37.5%;
}
@media (max-width: 1199px) {
  .cta-section-inner{
    gap: 30px;
  }
}
@media (max-width: 991px) {
  .cta-section-inner{
    gap: 25px;
    flex-direction: column;
  }  
  .cta-section-img img {
    max-width: 100%;
    height: auto;
    width: 100% !important;
  }
  .cta-section-img{
 flex: 0 0 100%;
    max-width: 500px;
    width: 100%;
  }
    .cta-section-text {
    width: 100%;
  }
    .cta-section-img {
    order: -1;
  }
}
@media(max-width:768px){
      .cta-section-text h2 {
    font-size: 26px;
  }
  
  .cta-section-text {
    gap: 15px;
  }
}
@media(max-width:480px){
  .cta-section-text h2 {
    font-size: 22px;
  }
  .cta-section-text p,
  .cta-section-text ul {
    font-size: 14px;
  }
    .cta-section-inner{
        gap: 20px;
    }
}
@media(max-width:320px){
  .cta-section-text h2{
    font-size: 17px !important;
    line-height: 1.35 !important;
  }
  .cta-section-text p,
  .cta-section-text ul{
       font-size: 13px !important;
    line-height: 1.5 !important;
  }
}