/* Home page specific styles */

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
  padding: 2rem;
}

.hero-section {
  max-width: 800px;
  margin-bottom: 3rem;
}

h1 {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-description {
  font-size: 1.25rem;
  color: var(--secondary);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.hero-cta {
  margin-bottom: 2rem;
}

.cta-button {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: bold;
  box-shadow: var(--shadow);
  transition: background 0.2s;
}

.cta-button:hover {
  background: var(--secondary);
}

.cta-subtext {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: var(--secondary);
}

.secondary-actions {
  margin-top: 1rem;
}

.standard_button {
  margin: 0 0.5rem;
} 