 .hero-section {
     background: #EFF4F7;
     padding: 50px 0;
     min-height: 462px;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .hero-content {
     display: flex;
     gap: 60px;
     align-items: center;
     justify-content: space-between;
 }

 .hero-text {
     max-width: 510px;
     width: 100%;
     
 }

 .hero-text h1 {
     font-size: 37px;
     color: #000;
     font-weight: 600;
     margin-bottom: 26px;

 }

 .hero-text p {
     color: #000;
     font-size: 18px;
     line-height: 1.8;
     font-weight: 500;

 }

 .hero-text .btn-download {
     padding: 17px 36px;
     border: 1px solid #000;
     font-size: 17px;
     line-height: 1;
     font-weight: 700;
     transition: all .3s ease-in-out;
     outline: none;
     margin-top: 20px;
     background: transparent;
     display: inline-block;
     color: #000;
 }

 .hero-text .btn-download:hover {
     background-color: #000;
     color: #fff;
 }

 .hero-image {
     position: relative;
     width: 543px;
     height: 365px;
     border-radius: 56px 0 56px 0;
 }

 .hero-image img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     border-radius: 56px 0 56px 0;
 }

 .badge {
     position: absolute;
     bottom: 67px;
     left: -143px;
     width: 304px;
     padding: 15px 31px;
     background: #ffffff;
     border-radius: 40px 40px 0;
     box-shadow: 0px 2px 12px 0px #9696962E;
     display: flex;
     align-items: center;
     gap: 20px;
 }

 .badge-icon svg {
     width: 42px;
     height: 42px;
 }

 .badge-text {
     font-size: 14px;
     line-height: 1.4;
     color: #000;
     font-weight: 500;
     text-align: left;
 }

 @media (max-width: 1024px) {

     .hero-content {
         gap: 40px;
     }

     .hero-image {
         width: 100%;
         height: auto;
     }

     .badge {
         left: 20px;
         bottom: 20px;
         /* width: auto; */
         border-radius: 24px 24px 0;
         gap: 15px;
         padding: 15px 25px;
     }

     .badge-icon svg {
         width: 30px;
         height: 30px;
     }

     .hero-section {
         padding: 60px 0;
     }
 }

 @media (max-width: 768px) {

     /* Hero */


     .hero-content {
         flex-direction: column;
         text-align: center;
     }

     .hero-text {
         max-width: 100%;
     }

     .hero-text h1 {
         font-size: 30px;
         line-height: 1.3;
         margin-bottom: 15px;
     }

     .hero-text p {
         font-size: 16px;
     }

     .hero-image {
         width: 100%;
         height: auto;
     }

     .hero-section {
         padding: 50px 0;
     }
 }

 @media (max-width: 575px) {

     .hero-text h1 {
         font-size: 28px;
         line-height: 1.2;
         margin-bottom: 12px;
     }

     .hero-section {
         padding: 40px 0;
     }
 }