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

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

#hero-pc {
  display: none;
}

#hero-mobile {
  width: 100%;
  height: 50vh;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url("/assets/imgs/gardening.jpg") no-repeat center/cover;
  display: flex;
  justify-content: flex-start;
  padding-top: 30%;
  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;
}

.card-box {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.card {
  flex: 1 1 300px;
  max-width: 300px;
  background: var(--card-bg);
  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;
  object-fit: cover;
  height: 300px;
}

#plants {
  background: var(--card-bg);
}

#plants > * {
  color: var(--bg-sub);
}

#plants > h3,
#construct > h3 {
  margin-top: 10px;
  margin-left: 20px;
}

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

.cta a {
  position: relative;
  background: #fee500ff;
  color: black;
  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;
}
