:root {
  --primary-color: #A990FF; /* Lavender */
  --secondary-color: #F38A66; /* Peach */
  --bg-color: #FAF6FF;
  --text-dark: #1C130E;
  --text-light: #5E5E5E;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--bg-color);
  color: var(--text-dark);
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-brand {
  font-size: 24px;
  font-weight: 800;
  color: var(--primary-color);
  text-decoration: none;
}

.nav-links a {
  margin-left: 20px;
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 14px;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--primary-color);
}

.glass-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
}

h1 {
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 20px;
  color: var(--text-dark);
}

h2 {
  font-size: 24px;
  font-weight: 800;
  margin-top: 40px;
  margin-bottom: 16px;
  color: var(--primary-color);
}

p {
  color: var(--text-light);
  font-size: 16px;
  margin-bottom: 16px;
}

ul {
  color: var(--text-light);
  margin-bottom: 16px;
}

.btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  color: white;
  padding: 12px 24px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
}

.footer {
  text-align: center;
  padding: 40px;
  color: var(--text-light);
  font-size: 14px;
}
