/* Reset & Base */
/* * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
} */
/* body {
  font-family: 'Inter', sans-serif;
  background: #f4f7fa;
  color: #333;
  line-height: 1.6;
} */

/* Header */
header {
  background: linear-gradient(135deg, #ff6f61, #ffb347);
  color: white;
  padding: 4rem 2rem;
  text-align: center;
}
header h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
header p {
  font-size: 1.2rem;
}

/* Navigation */
nav {
  position: sticky;
  top: 0;
  background: white;
  display: flex;
  justify-content: space-around;
  padding: 1rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  z-index: 1000;
}