.App {
  min-height: 100vh;
  background: #f8faf9;
}

/* Demo Content Styles */
.demo-content {
  padding: 4rem 2rem;
  max-width: 1280px;
  margin: 0 auto;
}

.content-wrapper {
  text-align: center;
}

.content-wrapper h1 {
  font-family: 'Merriweather', serif;
  font-size: 2.5rem;
  color: #1b4332;
  margin-bottom: 1rem;
  font-weight: 700;
}

.content-wrapper > p {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  color: #52796f;
  margin-bottom: 3rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  border: 2px solid #d8f3dc;
  box-shadow: 0 2px 8px rgba(45, 106, 79, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(45, 106, 79, 0.15);
  border-color: #2d6a4f;
}

.feature-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.375rem;
  color: #2d6a4f;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.feature-card p {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: #52796f;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .demo-content {
    padding: 3rem 1.5rem;
  }

  .content-wrapper h1 {
    font-size: 2rem;
  }

  .content-wrapper > p {
    font-size: 1.125rem;
  }

  .feature-grid {
    gap: 1.5rem;
  }

  .feature-card {
    padding: 1.5rem;
  }
}