* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #222;
  background: #FFFFFF;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

header {
  background: white;
  padding: 20px 0;
  opacity: 0.6;
  z-index: 1;
  position: relative;

  .headerDiv {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;

    .logo {
      font-weight: bold;
      font-size: 20px;
      color: #2e90b9;
      text-align: center;

      .logoImg {
        height: 40px;
        width: 40px;
        border-radius: 20px;
        margin-right: 5px;
        vertical-align: middle;
      }
    }

    .nav-links {
      .link {
        margin-left: 20px;
        font-size: 16px;
        font-weight: bold;
        color: #1E2640;
      }

      .selectText {
        color: #4FA6C8;
      }

      .mr50 {
        margin-right: 50px;
      }
    }
  }
}

.sectOne {
  text-align: center;

  .sectOneContent {
    position: relative;
    bottom: 300px;

    .homeImg5 {
      width: 1440px;
      height: 1125px;
    }

    .sectOneTextDiv {
      position: absolute;
      padding: 24px 0px;
      width: 100%;
      height: 320px;
      bottom: -100px;
      left: 50%;
      transform: translateX(-50%);
      text-align: center;
      background-color: #FFFFFF;

      .sectOneTextTop {
        font-size: 32px;
        color: #101828;
      }

      .sectOneTextBottom {
        margin-top: 24px;
        font-size: 18px;
        color: #4A5565;
      }

      .sectOneTextBottom2 {
        margin-top: 24px;
        font-size: 14px;
        color: #6A7282;
      }

      .store-buttons {
        margin-top: 24px;
        height: 96px;
        padding: 12px 0;
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
        position: relative;

        .store-button {
          width: 204px;
          height: 72px;
          background: black;
          color: white;
          border: none;
          padding: 12px 25px;
          border-radius: 8px;
          cursor: pointer;
          font-size: 14px;
          transition: 0.3s;
          display: flex;
          align-items: center;
          flex-direction: row;
          justify-content: center;
        }

        .store-button:hover {
          opacity: 0.8;
        }

        .storeIcon {
          width: 24px;
          height: 24px;
          margin-right: 12px;
        }

        .storeTextDiv {
          display: flex;
          flex-direction: column;
          align-items: flex-start;
        }

        .storeTextTop {
          opacity: 0.8;
          font-size: 12px;
          color: #FFFFFF;
        }

        .storeTextBottom {
          font-size: 18px;
          color: #FFFFFF;
        }
      }
    }
  }
}



.bodyOne {
  text-align: center;
  position: relative;
  bottom: 185px;


  .content {
    width: 100%;
  }

  .homeImg1 {
    width: 1440px;
    height: 780px;
  }

  .homeImg2 {
    width: 1440px;
    height: 409px;
    margin-top: 60px;
  }

  .homeImg3 {
    margin-top: 100px;
    width: 1440px;
    height: 265px;
  }

  .homeImg4 {
    margin-top: 50px;
    width: 1440px;
    height: 525px;
  }
}

/* section */
.section {
  padding: 70px 20px;
  text-align: center;
}

.section.gray {
  background: #ffffff;
}

.section h2 {
  font-size: 26px;
  margin-bottom: 20px;
}

.section p {
  color: #666;
  max-width: 700px;
  margin: 0 auto 40px;
}

/* cards */
.cards {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.card {
  background: #eef6fb;
  padding: 30px;
  border-radius: 16px;
  width: 300px;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

.card h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

/* blue box */
.alert-box {
  background: #4fa3c6;
  color: white;
  padding: 40px 20px;
  border-radius: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.alert-box p {
  color: #eaf6fc;
}

/* privacy */
.steps {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.step {
  background: white;
  padding: 30px;
  width: 250px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.step-number {
  font-size: 30px;
  font-weight: bold;
  color: #2e90b9;
  margin-bottom: 10px;
}

/* footer */
footer {
  background: #0c1e2f;
  color: #ccc;
  padding: 40px 20px;
  font-size: 14px;

  .footer-container {
    width: 95%;
    max-width: 1350px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 30px;
  }

  .footerDivider {
    height: 0.5px;
    width: 95%;
    max-width: 1350px;
    background: #3D4959;
    margin: 32px auto;
  }

  .footer-bottom {
    width: 95%;
    max-width: 1350px;
    margin: 0 auto;
  }

  .footer-column {
    max-width: 532px;

    .footerTitle {
      height: 37px;
      vertical-align: middle;
      font-size: 24px;
      margin-bottom: 10px;
      color: white;

      .footerTitleLogo {
        height: 37px;
        width: 37px;
        border-radius: 18.5px;
        margin-right: 10px;
        vertical-align: middle;
      }
    }

    .footerText1 {
      font-size: 14px;
      color: #808DA1;
    }

    .footerText2 {
      font-size: 16px;
      color: #FFFFFF;
    }

    .ul1 {
      margin-left: 20px;
    }

    .mt16 {
      margin-top: 16px;
    }

    .mt24 {
      margin-top: 24px;
    }

    .mt8 {
      margin-top: 8px;
    }
  }

  .w160 {
    width: 160px;
  }
}

/* responsive */
@media (max-width: 768px) {

  header {
    background: white;
    padding: 15px 0;
    opacity: 0.6;
    z-index: 1;
    position: relative;

    .headerDiv {
      width: 92%;
      max-width: 768px;
      margin: 0 auto;
      flex-direction: column;
      gap: 12px;

      .logo {
        font-weight: bold;
        font-size: 20px;
        color: #2e90b9;
        text-align: center;

        .logoImg {
          height: 40px;
          width: 40px;
          border-radius: 20px;
          margin-right: 5px;
          vertical-align: middle;
        }
      }

      .nav-links {
        .link {
          margin: 0 10px;
          font-size: 14px;
        }

        .selectText {
          color: #4FA6C8;
        }

        .mr50 {
          margin-right: 50px;
        }
      }
    }
  }

  .sectOne {
    text-align: center;

    .sectOneContent {
      position: relative;
      bottom: 90px;

      .homeImg5 {
        width: 100%;
        height: auto;
      }

      .sectOneTextDiv {
        position: absolute;
        padding: 24px 0px;
        width: 100%;
        height: 320px;
        bottom: -255px;
        left: 50%;
        transform: translateX(-50%);
        text-align: center;
        background-color: #FFFFFF;

        .sectOneTextTop {
          font-size: 8.5px;
          color: #101828;
        }

        .sectOneTextBottom {
          margin-top: 8px;
          font-size: 6px;
          color: #4A5565;
        }

        .sectOneTextBottom2 {
          margin-top: 24px;
          font-size: 6px;
          color: #6A7282;
        }

        .store-buttons {
          display: flex;
          justify-content: center;
          flex-direction: column;
          align-items: center;
          flex-wrap: nowrap;
          margin-top: 30px;
          padding: 12px 0;
          gap: 24px;
          position: relative;

          .store-button {
            width: 45%;
            height: 44px;
            min-height:  44px;
            background-color: #000000;
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
          }

          .store-button:hover {
            opacity: 0.8;
          }

          .storeIcon {
            width: 22px;
            height: 22px;
            margin-right: 12px;
          }

          .storeTextDiv {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
          }

          .storeTextTop {
            opacity: 0.8;
            font-size: 11px;
            color: #FFFFFF;
          }

          .storeTextBottom {
            font-size: 16px;
            color: #FFFFFF;
          }
        }
      }
    }
  }

  .bodyOne {
    text-align: center;
    position: relative;
    bottom: -90px;

    .content {
      width: 100%;
    }

    .homeImg1 {
      max-width: 100%;
      height: auto;
    }

    .homeImg2 {
      width: 100%;
      height: auto;
      margin-top: 28px;
    }

    .homeImg3 {
      margin-top: 28px;
      width: 100%;
      height: auto;
    }

    .homeImg4 {
      margin-top: 28px;
      width: 100%;
      height: auto;
    }
  }

  footer {
    background: #0c1e2f;
    color: #ccc;
    padding: 100px 10px 40px 10px;
    font-size: 8px;

    .footer-container {
      width: 95%;
      max-width: 768px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      gap: 20px;
    }

    .footerDivider {
      height: 0.5px;
      width: 95%;
      max-width: 1350px;
      background: #3D4959;
      margin: 32px auto;
    }

    .footer-bottom {
      width: 95%;
      max-width: 1350px;
      margin: 0 auto;
    }

    .footer-column {
      max-width: 532px;

      .mb8 {
        margin-bottom: 6px;
      }

      .footerTitle {
        height: 30px;
        vertical-align: middle;
        font-size: 12px;
        margin-bottom: 10px;
        color: white;

        .footerTitleLogo {
          height: 30px;
          width: 30px;
          border-radius: 15px;
          margin-right: 3px;
          vertical-align: middle;
        }
      }

      .footerText1 {
        font-size: 8px;
        color: #808DA1;
      }

      .footerText2 {
        font-size: 10px;
        color: #FFFFFF;
      }

      .ul1 {
        margin-left: 20px;
      }

      .mt16 {
        margin-top: 16px;
      }

      .mt24 {
        margin-top: 24px;
      }

      .mt8 {
        margin-top: 8px;
      }
    }

    .w160 {
      width: 160px;
    }
  }
}