.faqBanner {
    position: relative;
    background: linear-gradient(180deg, #EBF7FF 0%, #FDF5EB 100%);
    padding: 120px 0 50px;
  }
  .faqBanner::before,.faqBanner::after{
    content:"";
    background: url(../images/star.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    width: 52px;
    height: 49px;
  }
  .faqBanner::before{
    left: 0;
    bottom: 25px;
  }
  .faqBanner::after{    
    right: 15px;
    top: 72px;
  } 
  .faqBanner h1 {
    color: #231F20;
    font-weight: 700;
    font-size: 28px;
    line-height: 140%;
    text-align: center;
  }
   
  .faqBanner p {
      color: #585858;
    font-weight: 400;
    font-size: 15px;
    line-height: 140%;
    text-align: center;
    max-width: 830px;
    margin: 30px auto 0;
  }
  .faqBanner p a{
    color: #233f8c;
    text-decoration: underline;
  }

  /* Contact Section */
  .contactSection {
    padding: 60px 0;
    background: #fff;
  }

  .sec__head {
    color: #231F20;
    font-weight: 700;
    font-size: 28px;
    line-height: 36px;
    text-align: center;
    margin-bottom: 40px;
  }

  .contactMethods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
  }

  .contactMethod {
    background: #fff;
    border: 1px solid #E8E8E8;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 360px;
  }

  .contactMethod:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.12);
  }

  .contactMethod h3 {
    color: #233f8c;
    font-weight: 600;
    font-size: 20px;
    line-height: 25px;
    margin-bottom: 20px;
  }

  .contactMethod p {
    color: #575E62;
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 15px;
  }

  .contactMethod p:last-of-type {
    margin-bottom: 25px;
  }

  .contactMethod p strong {
    color: #231F20;
    font-weight: 600;
  }

  .contactMethod p a {
    color: #233f8c;
    text-decoration: none;
    font-weight: 500;
  }

  .contactMethod p a:hover {
    text-decoration: underline;
  }

  .contact-btn {
    background: #233f8c;
    color: #fff !important;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    display: inline-block;
    transition: background 0.3s ease;
  }

  .contact-btn:hover {
    background: #1a2f6b;
    text-decoration: none;
  }

  /* Offices Section */
  .officesSection {
    padding: 60px 0;
    background: #F8FBFF;
  }

  .officesGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
  }

  .officeCard {
    background: #fff;
    border-radius: 15px;
    padding: 25px 20px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .officeCard:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.12);
  }

  .officeHeader {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
  }

  .officeHeader .flag {
    font-size: 24px;
    margin-right: 12px;
  }

  .officeHeader h3 {
    color: #233f8c;
    font-weight: 600;
    font-size: 20px;
    line-height: 25px;
    margin: 0;
  }

  .officeCard p {
    color: #575E62;
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 20px;
  }

  .mapContainer {
    border-radius: 10px;
    overflow: hidden;
    margin-top: 15px;
  }

  .mapContainer iframe {
    border-radius: 10px;
  }

  /* CTA Section */
  .cta_star {
    padding: 80px 0;
  }

  .cta_body {
    padding: 40px 20px;
    background: url('../images/cta_bg.svg');
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 20px;
    border: 1px solid #dfe9f1;
    position: relative;
    z-index: 1;
    background-position: center top;
    text-align: center;
  }

  .cta_head {
    font-style: normal;
    font-weight: 600;
    font-size: 26px;
    line-height: 32px;
    text-align: center;
    color: #231f20;
    margin-bottom: 15px;
  }

  .cta_desc {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    text-align: center;
    color: #575E62;
    max-width: 600px;
    width: 100%;
    margin: 0 auto 40px;
  }

  .cta_btn {
    background-color: #233f8c;
    border-radius: 40px;
    text-align: center;
    color: #fff !important;
    padding: 12px 30px;
    font-weight: 500;
    font-size: 16px;
    line-height: 25px;
    display: inline-block;
    text-decoration: none;
    position: relative;
    transition: background 0.3s ease;
  }

  .cta_btn:hover {
    background: #1a2f6b;
    text-decoration: none;
  }

  .cta_btn img {
    margin-left: 10px;
    vertical-align: middle;
  }
  .middleDiv{
    min-height: 151px;
  }