.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  margin: 0rem 0 2rem 0;
}

.hero div.text {
  flex: 3;
}

.hero div.text h1 {
  font-size: 3.6rem;
  margin: 0rem 0;
}

.hero div.text h2 {
  font-size: 1.1rem;
  text-transform: capitalize;
  margin: 0rem 0 1rem 0;
  opacity: 0.8;
}

.hero div.text p {
  font-size: 1.2rem;
  margin: 1rem 0 3rem;
  line-height: 1.5;
  opacity: 0.8;
}

.hero div.text button {
  margin: 2rem 0;
  padding: 1rem 2rem;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  width: 400px;
}

.hero .img {
  flex: 2;
}

.hero .img img {
  margin: 4rem;
  width: 100%;
}

.hero .img {
  padding-right: 150px;
}

.hero a {
  background-color: var(--button-color);
  margin: 2rem 0;
  padding: 1rem 2rem;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;

}

.go {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4rem 0;
  gap: 4rem;
}

.go div {
  background-color: var(--accent);
  padding: 1.2rem 2.4rem;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
}

.go div h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.go div p {
  font-size: 1.3rem;
  line-height: 1.6;
}

/* ──────────────────────────────────────────────── */
/* Media Query - Mobile (max-width: 640px)          */
/* ──────────────────────────────────────────────── */

@media (max-width: 640px) {
  .hero {
    flex-direction: column;
  }

  .hero div.text h1 {
    font-size: 3.8rem;
    margin: 1rem 0;
  }

  .hero div.text h2 {
    margin: 0rem 0 1rem 0;
  }

  .hero div.text p {
    font-size: 1.4rem;
    line-height: 1.5;
  }

  .hero div.text button {
    width: 100%;
  }

  .go {
    flex-direction: column;
  }
}