* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f9f9f9;
}

header {
  background: #c8102e;
  color: white;
  padding: 1.5rem 2rem;
  text-align: center;
}

header h1 {
  font-size: 1.75rem;
  font-weight: 600;
}

main {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  background: white;
  min-height: calc(100vh - 200px);
}

.hero {
  text-align: center;
  margin-bottom: 2rem;
  padding: 2rem 1rem;
  background: #f0f0f0;
  border-radius: 4px;
}

.hero h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #c8102e;
  margin-bottom: 0.5rem;
}

.hero h3 {
  font-size: 1.1rem;
  font-weight: 500;
  color: #555;
  margin: 0.25rem 0;
}

.content {
  margin-bottom: 2rem;
}

.content p {
  margin-bottom: 1rem;
}

.content ul {
  list-style: none;
  padding-left: 0;
}

.content li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.content li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #c8102e;
  font-weight: bold;
}

.form-section {
  background: #f9f9f9;
  padding: 1.5rem;
  border-radius: 4px;
}

.form-group {
  margin-bottom: 1rem;
}

label {
  display: block;
  margin-bottom: 0.25rem;
  font-weight: 500;
}

input[type="text"],
input[type="email"],
select {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 3px;
  font-size: 1rem;
}

.checkbox-group label {
  display: flex;
  align-items: flex-start;
  font-weight: 400;
  font-size: 0.9rem;
}

.checkbox-group input[type="checkbox"] {
  margin-right: 0.5rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

button[type="submit"] {
  background: #c8102e;
  color: white;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 3px;
  font-size: 1rem;
  cursor: pointer;
  width: 100%;
}

button[type="submit"]:hover {
  background: #a00d25;
}

footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 1.5rem;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #222;
  color: white;
  padding: 1rem;
  text-align: center;
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-banner button {
  background: #c8102e;
  color: white;
  border: none;
  padding: 0.5rem 1.5rem;
  margin-left: 1rem;
  border-radius: 3px;
  cursor: pointer;
}

@media (max-width: 600px) {
  header h1 {
    font-size: 1.4rem;
  }
  .hero h2 {
    font-size: 1.2rem;
  }
  .hero h3 {
    font-size: 1rem;
  }
}
