* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}

body {
  font-family: 'Nunito Sans', sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fff;
}

.header {
  background-color: #004080;
  color: #fff;
  padding: 20px 0;
  text-align: center;
}

.header h1 {
  font-size: 2em;
  margin: 0;
}

.container {
   max-width: 100%; 
  margin: 0 auto;
  padding: 20px 0;
}

.main-content {
  margin: 20px 0;
  justify-content: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 767px){
    .main-content{
        margin: 0px 0;
        padding:0 15px;
    }
}

.section {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* text-align: center; */
  margin: 20px 0;
  padding: 20px;
  /* max-width: 80%; */

}
@media screen and (max-width: 767px){
    .section{
        margin: 0px 0;
        padding:0 0;
    }
}

.section.alternate {
  flex-direction: row-reverse;
  background: #f1f1f1;
}

.section.highlight {
  background: #e8f4fc;
  border-left: 5px solid #004080;
}

.section-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.text-content {
  flex: 1;
  min-width: 300px;
  margin: 20px;
}

.image-content {
  flex: 0.5;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px;
}

.responsive-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 10px;

  box-shadow: -15px 15px #f5f5f5 !important;
}


.section h2, .section h3 {

  margin-bottom: 15px;
  text-align: left;
}

.section p {
  margin-bottom: 15px;
  text-align: justify;
}



.benefit-item {
  display: flex;
 
  text-align: center;
  width: 100%;
  max-width: 300px;
}

.benefit-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
}
@media (max-width: 762px) {
  .img-class {
      flex-direction: column-reverse !important;
  }
}
