html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: "Inter", sans-serif;
  overflow-x: hidden; /* safety net */
}


.hero {
  min-height: 100vh;
  width: 100%;
  background-image: url("img.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
  
  /* center the content with flex instead of absolute+transform */
  display: flex;
  align-items: center;
  justify-content: center;
}


.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
}


.hero-content-wrapper {
  position: relative;   /* sit normally inside flex container */
  z-index: 2;
}


.hero-box {
  background: whitesmoke;
  padding: 40px 50px;
  border-radius: 25px;
  max-width: 550px;
  width: 100%;              /* fill available space but not beyond max-width */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}


/* LOGO + HEADING */
.heading-with-logo {
  display: flex;
  align-items: center;
  gap: 40px;
}

.heading-with-logo img {
  width: 60px;
}

.heroh2, .heroh1, .herop {
  margin: 0;
  color: #08223a;
}

.heroh1 {
  font-size: 50px;
  margin-top: 5px;
  margin-bottom: 20px;
}

.heroh2 {
  font-size: 22px;
  margin-top: 20px;
}

.herop {
  font-size: 14px;
  margin: 20px 0 30px;
}

/* CONTACT ITEMS */
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
}

.contact-icon {
  width: 24px;
  height: 24px;
}

.contact-info h4 {
  margin: 0;
  font-size: 15px;
}

.contact-info p {
  margin-top: 3px;
  font-size: 14px;
  color: #08223a;
}

/* FOOTER */
footer {
  background-color: whitesmoke;
  text-align: center;
  padding: 10px 0;
  color: #01273b;
  font-family: "General Sans", sans-serif;
  font-size: 14px;
}
