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

header {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #222;
}

header .logo {
  font-size: 14px;
  letter-spacing: 2px;
  color: #bbb;
  text-transform: uppercase;
}

header a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border: 1px solid #fff;
  padding: 6px 14px;
  transition: background-color 0.3s;
}

header a:hover {
  background-color: #fff;
  color: #000;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
}

h1 {
  font-size: 28px;
  max-width: 600px;
  margin-bottom: 20px;
  line-height: 1.4;
}

p {
  font-size: 16px;
  color: #ccc;
  max-width: 600px;
  margin-bottom: 30px;
}

.cta-button {
  border: 1px solid #fff;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  background-color: #fff;
  color: #000;
  transition: all 0.3s;
  width: auto;
  display: inline-block;
  margin-top: 20px;
}

.cta-button:hover {
  background-color: #000;
  color: #fff;
}

footer {
  text-align: center;
  font-size: 12px;
  padding: 20px;
  color: #777;
  border-top: 1px solid #111;
}

form {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
}

input,
textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: 1px solid #333;
  background-color: #111;
  color: #fff;
  font-size: 14px;
  box-sizing: border-box;
  border-radius: 4px;
}

textarea {
  height: 100px;
  resize: vertical;
}

form label {
  display: block;
  margin-bottom: 5px;
  font-size: 15px;
  text-align: left;
  max-width: 600px;
  margin-top: 20px;
  color: #fff;
}

form label em {
  font-style: italic;
  color: #aaa;
  font-weight: normal;
}