/* Common styles shared across all pages */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial,
    sans-serif;
  line-height: 1.6;
  color: #333;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  background-attachment: fixed;
  min-height: 100vh;
}

a {
  color: #4c5fd8; /* Darker for WCAG AA contrast on white backgrounds */
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  text-decoration: underline;
  color: #3d4fc4; /* Even darker on hover */
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Mobile responsive */
@media (max-width: 768px) {
  body {
    font-size: 0.95rem;
  }
}
