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

body {
  font-family: 'Poppins', sans-serif;
  background: #F8F6F1;
  color: #2E2E2E;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Container */
.quiz-container {
  width: 100%;
  max-width: 420px;
  padding: 0px;
}

/* Header */
.quiz-header {
  text-align: center;
  margin-bottom: 20px;
}

.quiz-header h1 {
  font-size: 2rem;
  color: #1F6F5B;
}

.subtitle {
  font-size: 0.95rem;
  color: #555;
  margin-top: 4px;
}

/* Card */
.quiz-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Question */
.question {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 18px;
}

/* Options */
.options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.options button {
  background: #F1F3F2;
  border: 2px solid transparent;
  border-radius: 10px;
  padding: 12px;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.options button:hover {
  background: #E5ECE9;
}

.options button.correct {
  background: #E6F4EA;
  border-color: #2E8B57;
  color: #2E8B57;
}

.options button.wrong {
  background: #FDEAEA;
  border-color: #B44444;
  color: #B44444;
}

/* Result */
.result {
  margin-top: 16px;
}

#feedback {
  font-weight: 600;
  margin-bottom: 6px;
}

.reference {
  font-family: 'Amiri', serif;
  font-size: 0.9rem;
  color: #666;
}

/* Next Button */
.next-btn {
  width: 100%;
  margin-top: 18px;
  padding: 12px;
  background: #1F6F5B;
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

.next-btn:hover {
  background: #185B4B;
}

/* Footer container */
.quiz-footer {
  text-align: center;
  margin-top: 16px;
  font-size: 0.75rem;
  cursor: pointer;
}

/* Line 1 */
.footer-powered {
  color: #000;
  font-weight: 400;
}

/* Brand name */
.footer-brand {
  color: #1F6F5B;
  font-weight: 600;
}

/* Line 2 */
.footer-contact {
  margin-top: 0px;
  color: #000;
  font-size: 0.7rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

/* WhatsApp icon */
.footer-whatsapp-icon {
  color: #1F6F5B;
  font-size: 0.8rem;
}

/* Separator */
.footer-separator {
  opacity: 0.6;
}

/* Phone number */
.footer-number {
  font-weight: 500;
      font-size: small;
}


.wa-link {
  text-decoration: none;
  color: #1F6F5B;
}

.wa-link:hover {
  text-decoration: underline;
}

.language-toggle {
  position: absolute;
  top: 18px;
  right: 18px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: #ffffff;
  padding: 6px 10px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  font-size: 0.75rem;
  color: #1F6F5B;
}

.language-toggle i {
  font-size: 0.85rem;
}

.language-toggle select {
  border: none;
  outline: none;
  background: transparent;
  font-size: 0.75rem;
  color: #1F6F5B;
  cursor: pointer;
}

