body {
  margin: 0;
  font-family: "Outfit", sans-serif;
  background: #f5f7fa;
  color: #222;
  line-height: 1.6;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 16px;
}

.hidden {
  display: none !important;
}

.hero {
  background: linear-gradient(145deg, #4a63d8, #263b99);
  color: #fff;
  text-align: center;
  padding: 80px 20px;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
}
.hero .logo {
  max-width: 100px;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: 2.2rem;
  margin-bottom: 16px;
}
.hero .desc {
  font-size: 1.1rem;
  margin-bottom: 30px;
}
.hero .contact-info {
  font-size: 0.95rem;
  margin-bottom: 24px;
}
.hero .contact-info i {
  margin-right: 6px;
}
.hero .contact-info p {
  margin: 4px 0;
}
.hero button {
  background: #ffffff;
  color: #263b99;
  border: 2px solid #fff;
  padding: 12px 28px;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.hero button:hover {
  background: #e3e9ff;
}

.quiz-section {
  padding: 60px 20px;
  background: #ffffff;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  animation: fadeIn 0.5s ease;
}
.quiz-section .quiz-question {
  margin-bottom: 40px;
  animation: fadeIn 0.5s ease;
}
.quiz-section .quiz-question h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #263b99;
}
.quiz-section .quiz-question .quiz-options {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.quiz-section .quiz-question .quiz-options .option-btn {
  background: #f0f3ff;
  border: 2px solid #263b99;
  color: #263b99;
  font-weight: 600;
  padding: 12px 18px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.quiz-section .quiz-question .quiz-options .option-btn:hover {
  background: #263b99;
  color: #fff;
}

.form-section {
  background: #f9f9fb;
  padding: 60px 20px;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  background: #f9f9fb;
}
.form-section .form-title {
  font-size: 1.8rem;
  margin-bottom: 30px;
  text-align: center;
  color: #263b99;
}
.form-section .form-group {
  margin-bottom: 20px;
}
.form-section .form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}
.form-section .form-group input[type=text],
.form-section .form-group input[type=email] {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
}
.form-section .form-group input[type=checkbox] {
  margin-right: 10px;
}
.form-section .form-group .submit {
  display: inline-block;
  background: #263b99;
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}
.form-section .form-group .submit:hover {
  background: #1a2970;
}
.form-section .form-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.form-section .form-buttons .submit {
  background: #263b99;
  color: #fff;
  border: none;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}
.form-section .form-buttons .submit:hover {
  background: #1a2970;
}
.form-section .form-buttons .back-btn {
  display: inline-block;
  padding: 14px 28px;
  border: 2px solid #263b99;
  background: #fff;
  color: #263b99;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}
.form-section .form-buttons .back-btn:hover {
  background: #263b99;
  color: #fff;
}

footer {
  background: #263b99;
  color: #ffffff;
  padding: 40px 16px;
}
footer .footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
footer .footer-container .footer-logo {
  max-width: 80px;
}
footer .footer-container .footer-links {
  display: flex;
  gap: 20px;
}
footer .footer-container .footer-links a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.3s ease;
}
footer .footer-container .footer-links a:hover {
  opacity: 0.8;
}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup {
  background: white;
  padding: 30px;
  border-radius: 12px;
  max-width: 90%;
  text-align: center;
  position: relative;
}
.popup .close-btn {
  position: absolute;
  top: 8px;
  right: 12px;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}
.popup .btn-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}
.popup .btn-group button {
  padding: 10px 22px;
  border-radius: 30px;
  border: 2px solid #263b99;
  background: #fff;
  color: #263b99;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.popup .btn-group button:hover {
  background: #263b99;
  color: #fff;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  .hero h1 {
    font-size: 1.7rem;
  }
  .quiz-options {
    flex-direction: column;
  }
  .footer-container {
    flex-direction: column;
    gap: 12px;
  }
}
.thankyou-section {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f5f7fa;
  text-align: center;
  padding: 40px 20px;
}
.thankyou-section .container {
  max-width: 600px;
  background: #fff;
  padding: 50px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  animation: fadeIn 0.5s ease;
}
.thankyou-section .thankyou-logo {
  width: 80px;
  margin-bottom: 24px;
}
.thankyou-section h1 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #263b99;
}
.thankyou-section p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #333;
}
.thankyou-section .back-home-btn {
  display: inline-block;
  padding: 12px 30px;
  background: #263b99;
  color: #fff;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s ease;
}
.thankyou-section .back-home-btn:hover {
  background: #1a2970;
}

.legal-section {
  padding: 60px 20px;
  background: #ffffff;
  color: #222;
}
.legal-section .container {
  max-width: 960px;
  margin: 0 auto;
}
.legal-section h1 {
  font-size: 2.2rem;
  margin-bottom: 30px;
  color: #263b99;
}
.legal-section h2 {
  font-size: 1.4rem;
  margin-top: 40px;
  margin-bottom: 16px;
  color: #333;
}
.legal-section p {
  font-size: 1rem;
  margin-bottom: 16px;
  line-height: 1.7;
}
.legal-section ul {
  padding-left: 20px;
  margin-bottom: 20px;
}
.legal-section ul li {
  margin-bottom: 10px;
}
.legal-section .last-updated {
  font-size: 0.9rem;
  color: #777;
  margin-top: 40px;
  text-align: right;
}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.popup-overlay .popup {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  max-width: 90%;
  text-align: center;
  position: relative;
}
.popup-overlay .popup p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}
.popup-overlay .popup .btn-group {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.popup-overlay .popup .btn-group button {
  padding: 10px 20px;
  border-radius: 30px;
  border: 2px solid #263b99;
  background: #fff;
  color: #263b99;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.popup-overlay .popup .btn-group button:hover {
  background: #263b99;
  color: #fff;
}
.popup-overlay .popup .close-btn {
  position: absolute;
  top: 8px;
  right: 12px;
  background: transparent;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
}/*# sourceMappingURL=style.css.map */