body {
  margin: 0;
  min-height: 100vh;
  background: #191917;
  color: #e5e3df;
  font-family: 'Oswald', Arial, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo {
  margin-top: 50px;
  max-width: 320px;
  width: 80vw;
  filter: drop-shadow(0 2px 32px #222);
  border-radius: 50%;
  background: rgba(30,30,30,0.4);
  padding: 36px 36px 24px 36px;
}

h1, h2 {
  margin-top: 38px;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-align: center;
  color: #b8ae97;
  text-shadow: 0 2px 8px #111;
}

.subtitle {
  font-size: 1.25rem;
  font-weight: 500;
  color: #b8ae97cc;
  margin-bottom: 36px;
  text-align: center;
  letter-spacing: 0.08em;
}

.cta-btn,
button[type="submit"] {
  background: #b8ae97;
  color: #181715;
  font-family: inherit;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  padding: 18px 36px;
  border: none;
  border-radius: 32px;
  box-shadow: 0 2px 14px #1118;
  cursor: pointer;
  margin-bottom: 54px;
  transition: background .15s;
}

.cta-btn:hover,
button[type="submit"]:hover {
  background: #e5e3df;
}

/* Form Styles */
.form-card {
  background: #22221f;
  border-radius: 24px;
  box-shadow: 0 4px 32px #111a;
  padding: 38px 32px 28px 32px;
  margin: 50px auto 32px auto;
  max-width: 420px;
  width: 92vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
  color: #e5e3df;
}

.form-label {
  font-size: 1.15rem;
  font-weight: 700;
  color: #b8ae97;
  margin-bottom: 8px;
  margin-top: 12px;
  letter-spacing: 0.05em;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  padding: 12px 14px;
  border: none;
  border-radius: 10px;
  background: #191917;
  color: #e5e3df;
  font-size: 1rem;
  margin-bottom: 12px;
  outline: none;
  width: 100%;
  box-sizing: border-box;
  font-family: 'Oswald', Arial, sans-serif;
}

textarea {
  min-height: 80px;
  resize: vertical;
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.checkbox-group label {
  font-size: 1rem;
  color: #b8ae97;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.checkbox-group input[type="checkbox"] {
  accent-color: #b8ae97;
  width: 18px;
  height: 18px;
}

footer {
  margin-top: 36px;
  width: 100vw;
  text-align: center;
  font-size: 1rem;
  color: #8c8578;
  letter-spacing: 0.08em;
  opacity: .9;
  padding-bottom: 18px;
}

@media (max-width: 600px) {
  .logo { padding: 18px 18px 10px 18px; max-width: 90vw; }
  h1, h2 { font-size: 1.4rem; margin-top: 18px; }
  .subtitle { font-size: 1rem; margin-bottom: 18px;}
  .cta-btn, button[type="submit"] { padding: 12px 18px; font-size: .9rem; }
  .form-card { padding: 20px 7vw; }
}
