main {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

main section {
  position: relative;
  width: 100%;
  padding: 20px 7.5%;
}

#hero-pc {
  display: none;
}

#hero-mobile {
  width: 100%;
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url("/assets/imgs/title.jpg") no-repeat center/cover;
  display: flex;
  justify-content: flex-start;
  padding-top: 50%;
  padding-bottom: 50px;
  flex-direction: column;
  padding-right: 40px;
  align-items: flex-end;
  text-align: right;
  position: relative;
}

#hero-mobile h2 {
  margin-top: 0.5rem;
}

#hero-mobile h3 {
  margin-top: 2rem;
}

#hero-mobile h4 {
  margin-top: 1rem;
}

#greeting-mobile {
  width: 100%;
  background: #d7e9ee;
}

#greeting-pc {
  display: none;
}
#greeting-mobile {
  display: block;
}

#greeting-mobile > * {
  margin-top: 10px;
}

#greeting-mobile img {
  position: absolute;
  z-index: -999;
  top: 0;
  left: 0;
}

#greeting-mobile h2 {
  margin-top: 10px;
  color: var(--text-main);
}

#greeting-mobile h3 {
  width: fit-content;
}

#greeting-mobile p {
  margin-top: 20px;
}

.card-box {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.card {
  flex: 1 1 200px;
  background: var(--card-bg);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.card img {
  display: block;
  width: 80px;
  height: 80px;
}

.card > * {
  text-align: center;
}

.cta {
  margin-top: 30px;
  text-align: center;
}

.cta a {
  position: relative;
  background: #03c75aff;
  color: var(--text-main);
  padding: 15px 50px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

.cta img {
  position: absolute;
  left: 0%;
  top: 50%;
  transform: translate(0%, -50%);
  height: 50px;
}
