:root {
    --background: 0 0% 100%;
    --foreground: 222.2 84% 4.9%;
    --card: 0 0% 100%;
    --card-foreground: 222.2 84% 4.9%;
    --popover: 0 0% 100%;
    --popover-foreground: 222.2 84% 4.9%;
    --primary: 221.2 83.2% 53.3%;
    --primary-foreground: 210 40% 98%;
    --secondary: 210 40% 96.1%;
    --secondary-foreground: 222.2 47.4% 11.2%;
    --muted: 210 40% 96.1%;
    --muted-foreground: 215.4 16.3% 46.9%;
    --accent: 210 40% 96.1%;
    --accent-foreground: 222.2 47.4% 11.2%;
    --destructive: 0 84.2% 60.2%;
    --destructive-foreground: 210 40% 98%;
    --border: 214.3 31.8% 91.4%;
    --input: 214.3 31.8% 91.4%;
    --ring: 221.2 83.2% 53.3%;
    --radius: 0.5rem
}

/* Layout Components */
.hero-section {
  @apply min-h-screen bg-gray-50 flex items-start justify-center py-12 px-4 sm:px-6 lg:px-8;
}

.hero-container {
  @apply max-w-7xl w-full grid grid-cols-1 lg:grid-cols-2 gap-12 items-center;
}

.hero-content {
  @apply space-y-6;
}

.hero-title {
  @apply text-4xl lg:text-5xl font-bold text-gray-900 leading-tight;
}

.hero-subtitle {
  @apply text-lg text-gray-600;
}

/* Features Section */
.features-section {
  @apply bg-white py-16;
}

.features-container {
  @apply max-w-7xl mx-auto px-4 sm:px-6 lg:px-8;
}

.features-header {
  @apply text-center space-y-4 mb-16;
}

.features-title {
  @apply text-3xl font-bold text-gray-900;
}

.features-subtitle {
  @apply text-lg text-gray-600 max-w-2xl mx-auto;
}

.features-grid {
  @apply grid grid-cols-1 md:grid-cols-3 gap-8;
}

.feature-card {
  @apply text-center space-y-4;
}

.feature-icon {
  @apply w-16 h-16 bg-blue-100 rounded-full flex items-center justify-center mx-auto;
}

.feature-icon svg {
  @apply w-8 h-8 text-blue-600;
}

.feature-title {
  @apply text-xl font-semibold text-gray-900;
}

.feature-description {
  @apply text-gray-600;
}
.text-muted-foreground {
    color: hsl(var(--muted-foreground));
}


/* Responsive utilities */
@media (max-width: 768px) {
  .hero-title {
    @apply text-3xl;
  }

  .form-section {
    @apply p-6;
  }

  .features-section {
    @apply py-12;
  }
}