.section-logo {
  height: auto !important;
  width: 30dvw;
  max-width: 800px;
  min-width: 350px;
  margin: 64px 0;
}

.hero {
  text-align: center;
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
  border-bottom: 2px solid #0077c0;
  border-radius: 50%;
  width: 109dvw;
  box-shadow: 0px 6px 6px #2596db2b;
}

.hero-title {
  font-size: 46px;
  margin: 20px 42px;
  font-weight: bold;
}
.button-start {
  background-color: #006494;
  border-radius: 8px;
  padding: 15px;
  font-size: 24px;
  font-weight: bold;
  border: none;
  color: white;
  cursor: pointer;
  position: absolute;
  bottom: -42px;
  left: 50%;
  transform: translateX(-50%);
  min-width: 310px;
  width: auto;
  text-align: center;
  line-height: normal;
}
.hero-description {
  font-family: "Roboto", sans-serif;
  margin: 0;
  color: #d1d5db;
  font-size: 21px;
  line-height: normal;
  font-weight: 100;
}
.under-hero {
  text-align: center;
  width: 100%;
  margin-top: 80px;
}
.trusted-logos {
  background-color: rgba(0, 100, 148, 0.22);
  padding: 30px;
  border-radius: 10px;
  margin-top: 50px;
  min-width: 80%;
}

.logo-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  justify-items: center;
}

.logo-container img {
  height: auto;
  width: 100%;
  max-width: 350px;
  max-height: 100px;
  object-fit: contain;
  min-height: 100px;
}

.steps {
  text-align: center;
  padding: 50px 20px;
  background-color: var(--bg-body);
  width: 100%;
}
.steps-header {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.line-header.left {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.line-header.right {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%) scaleX(-1) scaleY(-1);
}
.line-header {
  display: block;
  width: 50%;
}
.steps-title {
  font-size: 34px;
  font-weight: bold;
  position: relative;
  text-align: center;
  background-color: var(--bg-body);
  width: fit-content;
  z-index: 1;
  padding: 0px 70px;
  color: var(--bg-copyright);
}

.steps-container {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}

.step {
  padding: 20px;
  border: 1px solid gray;
  margin: 16px 32px;
  border-radius: 10px;
  text-align: left;
  width: 30%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.step-number-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  gap: 10px;
  margin-left: -47px;
}
.step-number span {
  border: 2px solid #0077c0;
  color: white;
  background-color: #0077c0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step h4 {
  font-size: 22px;
  font-weight: bold;
  margin: 0;
  margin-left: 20px;
}

.step-description {
  margin-top: -10px;
  text-align: left;
  background-color: var(--bg-body);
  line-height: normal;
  margin-left: -24px;
  padding-top: 25px;
  padding-bottom: 25px;
}

.step p {
  font-size: 18px;
  color: var(--color-p);
  line-height: normal;
  margin: 0;
}
@media (max-width: 1024px) {
  .header-main {
    position: relative;
  }
  .hero-title {
    font-size: 32px;
  }
  .hero-subtitle {
    font-size: 20px;
  }
  .hero-description {
    font-size: 16px;
  }

  .logo-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 28px;
  }

  .hero-subtitle {
    font-size: 18px;
  }
  .hero-description {
    font-size: 14px;
  }

  .logo-container {
    grid-template-columns: 1fr;
  }

  .steps-container {
    flex-direction: column;
    align-items: center;
  }

  .step {
    width: 90%;
    margin: 15px 0;
  }

  .steps-title {
    font-size: 16px;
  }
  .logo-container img {
    height: 25px;
  }
  .steps-title::before,
  .steps-title::after {
    width: 29%;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 24px;
  }

  .hero-subtitle {
    font-size: 16px;
  }
  .hero-description {
    font-size: 12px;
  }

  .logo-container {
    grid-template-columns: 1fr;
    margin-top: 20px;
  }

  .steps-container {
    flex-direction: column;
    align-items: center;
  }

  .step {
    width: 75%;
    margin: 10px 0;
  }

  .steps-title {
    font-size: 14px;
  }

  .steps-title::before,
  .steps-title::after {
    width: 9%;
  }
  .fuuter-upper {
    flex-direction: row;
  }
  .copyright {
    font-size: 12px;
  }
}
.footer {
  border-top: 1px solid var(--bg-footer);
}