.cta-section {
    background-color: #0B3A60; /* Dark blue background */
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    gap: 20px;
}
.cta-section .cta-section-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 60px;
}
.cta-content {
    max-width: 676px;
    text-align: left;
}
.cta-content h2 {
    margin: 0; 
    color: #fff;
  padding:0
}

.cta-content p {
    font-size: 16px;
    margin-top: 10px;
    color: #fff;
    line-height: 23px;
    padding: 0;
    max-width: 492px;
}



@media only screen and (max-width:767px) {
.cta-section .cta-section-content { 
    align-items: start;
    justify-content: start;
    gap: 10px;
    flex-direction: column;
}
}

 
