* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  color: #1f1f21;
  background: #ffffff;
  line-height: 1.6;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 20px;
}

.header {
  border-bottom: 1px solid #eee;
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: bold;
  font-size: 18px;
}

.nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #1f1f21;
  font-size: 14px;
}

.nav .cta {
  font-weight: bold;
}

.hero {
  background: #f5f5f5;
}

.hero h1 {
  font-size: 36px;
  margin-bottom: 20px;
}

.hero p {
  max-width: 700px;
  margin-bottom: 30px;
}

.button {
  display: inline-block;
  padding: 12px 24px;
  border: 1px solid #1f1f21;
  color: #1f1f21;
  text-decoration: none;
}

.section {
  background: #ffffff;
}

.section.light {
  background: #fafafa;
}

.section.dark {
  background: #1f1f21;
  color: #ffffff;
}

.section.dark input,
.section.dark textarea {
  background: #ffffff;
  color: #1f1f21;
}

h2 {
  font-size: 26px;
  margin-bottom: 20px;
}

.list {
  list-style: none;
}

.list li {
  margin-bottom: 10px;
}

.form {
  max-width: 500px;
  margin-top: 30px;
}

.form input,
.form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
}

.form button {
  padding: 12px;
  width: 100%;
  background: #ffffff;
  color: #1f1f21;
  border: none;
  cursor: pointer;
}

.footer {
  background: #ffffff;
  border-top: 1px solid #eee;
  text-align: center;
  padding: 30px 20px;
  font-size: 13px;
}

.disclaimer {
  margin-top: 10px;
  color: #666;
}

.email {
  margin-top: 20px;
}
