body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background-color: #0e0e0e;
  color: white;
  overflow: hidden; /* prevent scrollbars */
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 72px; /* slightly larger padding */
}

.logo {
  font-size: 32px; /* 20% larger */
  font-weight: bold;
}

.logo span:first-child {
  color: #c53030;
}

.logo span:last-child {
  color: #fff;
}

nav {
  display: flex;
  gap: 36px;
  align-items: center;
}

nav a {
  color: white;
  text-decoration: none;
  font-size: 19px; /* 20% bigger */
}

.signup-btn, .signin-btn {
  background-color: #c53030;
  border: none;
  padding: 10px 22px;
  border-radius: 6px;
  color: white;
  font-weight: bold;
  cursor: pointer;
  font-size: 18px; /* 20% bigger */
}

.signup-btn {
  margin-right: 12px; /* spacing between signup & signin */
}

.hero {
  position: absolute;
  top: 45%; /* nudged up a bit */
  left: 15%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 500px;
}

.hero h1 {
  font-size: 56px; /* larger hero text */
  font-weight: bold;
  margin: 0;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.hero-buttons button {
  font-size: 22px;
  font-weight: bold;
  padding: 20px 28px;
  border-radius: 8px;
  border: 1px solid white; /* thin white outline */
  cursor: pointer;
  text-align: left;
}

.hero-buttons .find {
  background-color: #c53030;
  color: white;
}

.hero-buttons .find small {
  display: block;
  font-size: 15px;
  font-weight: normal;
  margin-top: 4px;
}

.hero-buttons .track {
  background-color: #1a1a1a;
  color: white;
}

.hero-buttons .track small {
  display: block;
  font-size: 15px;
  font-weight: normal;
  margin-top: 4px;
}

.hero-img img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 35vw; /* dynamic scaling */
  height: auto;
  max-height: 100vh; /* prevent scroll bar */
  object-fit: contain;
}
