body {
  background-color: #181818;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 20px 0px;
}

.brand {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 8px;
  color: gold;
}

.subheading {
  font-size: 24px;
  font-weight: 400;
  color: #b0b0b0;
  margin-bottom: 20px;
}

.tagline {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}

.description {
  font-size: 18px;
  color: #b0b0b0;
  max-width: 640px;
  margin-bottom: 16px;
  line-height: 1.6;
}

.audience {
  font-size: 16px;
  color: #888;
  margin-bottom: 40px;
  font-style: italic;
}

.btn-login {
  background-color: gold;
  color: black;
  margin: 16px 0px 16px 0px;
  padding: 16px 48px;
  font-size: 18px;
  font-weight: 700;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.btn-login:hover {
  background-color: #ffe780;
  color: black;
  text-decoration: none;
}

.btn-support {
  display: inline-block;
  background-color: transparent;
  color: gold;
  padding: 12px 48px;
  margin-bottom: 40px;
  font-size: 15px;
  font-weight: 600;
  border: 2px solid gold;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.btn-support:hover {
  background-color: gold;
  color: black;
  text-decoration: none;
}

.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  padding: 10px 20px 10px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature {
  background-color: #252525;
  border-radius: 8px;
  padding: 24px;
  width: 340px;
  text-align: left;
}

.feature h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #fff;
  text-align: center;
}

.feature p {
  font-size: 14px;
  color: #a0a0a0;
  margin: 0;
  line-height: 1.5;
  text-align: center;
}

footer {
  text-align: center;
  padding: 20px;
  color: #888;
  font-size: 14px;
  margin-top: auto;
}

footer a {
  color: gold;
  text-decoration: none;
}

footer a:hover {
  color: #ffe780;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .brand {
    font-size: 40px;
  }

  .subheading {
    font-size: 18px;
  }

  .tagline {
    font-size: 22px;
  }

  .description {
    font-size: 16px;
  }

  .btn-login {
    margin: 11px 0px 11px 0px;
    padding: 14px 36px;
    font-size: 16px;
  }

  .feature {
    width: 100%;
    max-width: 400px;
  }
}