.custom-gradient {
  background: linear-gradient(135deg, #0d9488 0%, #111827 100%);
}

body {
  min-height: 100vh;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
  display: flex;
  flex-direction: column;
}

.container {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.card {
  max-width: 64rem;
  width: 100%;
  background-color: white;
  border-radius: 0.75rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.header {
  background-color: #0d9488;
  color: white;
  padding: 2rem;
}

.header h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.header p {
  font-size: 1.25rem;
  opacity: 0.9;
}

.content {
  padding: 2rem;
}

.content h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 1rem;
}

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

.divider {
  border-top: 1px solid #e5e7eb;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
}

.feature-list {
  margin-top: 1rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

.feature-icon {
  height: 1.5rem;
  width: 1.5rem;
  color: #10b981;
  margin-right: 0.5rem;
  flex-shrink: 0;
}

.footer {
  margin-top: 2rem;
  font-size: 0.875rem;
  color: #6b7280;
}