.hero-section {
  background: linear-gradient(135deg, var(--color-neutral-700) 0%, var(--color-primary) 100%);
  color: var(--color-background);
  padding: var(--space-20) 0;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto var(--space-8);
}

.hero-content h1 {
  font-size: var(--font-size-5xl);
  margin-bottom: var(--space-4);
}

.hero-content p {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-8);
}

.hero-section img {
  width: 100%;
  max-width: 1200px;
  border-radius: var(--radius-lg);
}

.section {
  padding: var(--space-16) 0;
}

.section:nth-child(even) {
  background-color: var(--color-neutral-100);
}

.section h2 {
  margin-bottom: var(--space-4);
}

.section p {
  margin: 0 auto var(--space-6);
}

.newsletter-form {
  display: flex;
  justify-content: center;
  gap: var(--space-4);
  margin-top: var(--space-6);
}

.newsletter-form .input {
  flex: 1;
  max-width: 300px;
}

@media (max-width: 768px) {
  .hero-section {
    padding: var(--space-12) 0;
  }

  .hero-content h1 {
    font-size: var(--font-size-3xl);
  }

  .newsletter-form {
    flex-direction: column;
    align-items: center;
  }

  .newsletter-form .input {
    max-width: 100%;
  }
}