/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  border-bottom: 1px solid #eee;
}
.logo {
  font-size: 36px;
  font-weight: 600;
  font-style: normal;
  font-family: "Inter", "Inter Placeholder", sans-serif;
  color: #000000;
  letter-spacing: 0em;
  text-align: left;
  line-height: 1.2;
  font-feature-settings: normal;
  position: left;
}
.nav {
  display: flex;
  gap: 24px;
}
.nav-link {
  color: #333;
  text-decoration: none;
  font-weight: 300;
  font-size: 16px;
  transition: color 0.3s ease;
}
.nav-link:hover {
  color: #e91e63;
}
.icons {
  display: flex;
  gap: 20px;
}
.icon-btn {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #666;
  transition: color 0.3s ease;
}
.icon-btn:hover {
  color: #e91e63;
}
/* Quiz Page */
.quiz-container {
  max-width: 600px;
  margin: 80px auto;
  padding: 20px;
  font-family: 'Inter', sans-serif;
  color: #1a1a1a;
}

.quiz-title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 10px;
  text-align: center;
}

.quiz-subtitle {
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
  text-align: center;
}

.quiz-question {
  border: none;
  margin-bottom: 30px;
}

.quiz-question legend {
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 20px;
  display: block;
}

.quiz-option {
  display: block;
  background-color: #f9f9f9;
  padding: 14px 16px;
  margin-bottom: 12px;
  border-radius: 6px;
  border: 1px solid #ddd;
  cursor: pointer;
  transition: border 0.2s ease, background-color 0.2s ease;
}

.quiz-option:hover {
  border-color: #e91e63;
  background-color: #fff0f5;
}

.quiz-option input {
  margin-right: 12px;
}

.quiz-button {
  display: block;
  margin: 30px auto 0;
  padding: 14px 30px;
  background-color: #e91e63;
  color: white;
  font-size: 16px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.quiz-button:hover {
  background-color: #c2185b;
}
