/* HOMEPAGE BANNER STYLING */
.home-page .banner {
  max-width: 1200px;
  margin-inline: auto;

  /* Background image */
  background-image: url("https://tapio.dev.rp003.webhelplogin.com/uploads/media/73f69a3f-db01-4e8e-a056-b8667d7a553a.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;

  /* Center content vertically and horizontally */
  display: grid;
  place-items: center;

  /* Size / spacing */
  min-height: 320px;
  padding: 16px;
  box-sizing: border-box;
}

/* Title inside banner */
.home-page .banner__title {
  font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  margin: 0;
  color: #111;
}

/* Optional wrapper for flexibility */
.home-page .banner__content {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
