* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}

.section {
  padding: 10px 0;
  text-align: center;
}

.section h2 {
  font-size: 28px;
  color: #FFF;
  margin-bottom: 30px;
  margin-top: 30px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section1 {
  background-color: #000080;
  color: #fff;
}

.section1 header {
  margin-bottom: 40px;
}

.section1 h1 {
  font-size: 48px;
  color: #fff;
  margin-bottom: 10px;
  margin-top: 45px;
}

.section1 img {
  max-width: 100% !important;
  height: auto;
  margin-bottom: -35px;
  margin-top: 10%;
  margin-left: 30%!important;
}
#miSpan {
  font-size: 10px;
  font-style: italic;
  color:#3498DB;
}

.section2 {
  background-color: #fff;
}

.benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.benefit {
  flex: 0 0 calc(20% - 20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px;
  background-color: #F8F9F9;
  color: #3498DB;
  border-radius: 8px;
  box-shadow: 5px 6px 6px #c0c0c0;
}

.benefit img {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

.benefit h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.benefit p {
  font-size: 16px;
  margin-bottom: 20px;
}


.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
  margin-bottom: 40px;
  
}

.step {
  text-align: center;
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
  position: relative;
  height: 450px;
}

.step img {
  width: 300px;
  height: auto;
  margin-bottom: 20px;
}

.step h3 {
  font-size: 20px;
  margin-bottom: 20px;
  color:#245582;
}

.step p {
  font-size: 16px;
  line-height: 1.5;
  color:#336699;
  text-align: center;
}

.section3 {
  background-color: #3498DB;
  color:  #fff;
  padding-bottom: 80px;
}

.section3 h2 {
  font-size: 32px;
  margin-bottom: 40px;
}

.section3 h3 {
  font-size: 25px;
  margin-bottom: 40px;
}

.section3 h4 {
  font-weight: 400;
  font-size: 16px;
}


.step .step-content {
  margin-left: 20px;
}

.step h3 {
  font-size: 24px;
  margin-bottom: 10px;
  text-align: justify;
}

.step .highlight {
  font-weight: bold;
}

.step:hover {
  transform: scale(1.05);
}

.step ul {
  color: #336699;
  text-align: justify;
  list-style: disc;
  margin-left: 15px;
  line-height: 1.5 !important;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  color: #fff;
  background-color: #e22e12;
  border-radius: 4px;
  transition: background-color 0.3s ease;
  margin-top: 35px !important;
  margin-bottom: 35px !important;
  
}

.btn:hover {
  background-color: #f8535c;
}



@media (max-width: 768px) {

  .section1 img {
    max-width: 50% !important;
    height: auto;
    margin-bottom: 5px;
    margin-top: -3%;
    margin-left: 25%!important;
  }
  .section1 h1 {
  font-size: 24px;
  color: #fff;
  margin-bottom: 10px;
  margin-top: 45px;
}
  .benefit {
    flex: 0 0 100%;
  }

  .steps {
    flex-direction: column;
    align-items: center;
    flex: 0 0 100%;
  }

  .step {
    margin-bottom: 40px;
    height: auto;
  }
  
}