 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    
    body {
      background: linear-gradient(135deg, #1a3a5f, #2c5282);
      color: #333;
      min-height: 100vh;
      padding: 20px;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    
    .container {
      max-width: 800px;
      width: 100%;
      background: white;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
      position: relative;
    }
    
    /* Header styles */
    .top-bar {
      background: linear-gradient(90deg, #0d4a8a, #1e6bc0);
      color: white;
      padding: 15px 30px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
    }
    
    .logo {
      display: flex;
      align-items: center;
      gap: 15px;
    }
    
    .logo-placeholder {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: linear-gradient(45deg, #38b2ac, #0d4a8a);
      display: flex;
      justify-content: center;
      align-items: center;
      color: white;
      font-size: 24px;
    }
    
    .logo__text {
      display: flex;
      flex-direction: column;
    }
    
    .logo__title {
      font-size: 1.4rem;
      font-weight: 700;
    }
    
    .logo__subtitle {
      font-size: 0.85rem;
      opacity: 0.9;
    }
    
    .call-now {
      background: #ff6b35;
      color: white;
      padding: 10px 20px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 8px;
      transition: all 0.3s ease;
    }
    
    .call-now:hover {
      background: #e55a2a;
      transform: translateY(-2px);
    }
    
    .subtext {
      width: 100%;
      text-align: center;
      font-size: 0.8rem;
      margin-top: 10px;
      opacity: 0.85;
    }
    
    /* Hero section */
    .hero {
      padding: 40px 30px;
      text-align: center;
      background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23f0f7ff"/><path d="M0 50 Q 25 30, 50 50 T 100 50" stroke="%23d0e5f5" stroke-width="2" fill="none"/></svg>');
      background-size: cover;
    }
    
    h1 {
      color: #0d4a8a;
      font-size: 2.2rem;
      margin-bottom: 20px;
      line-height: 1.3;
    }
    
    .tagline {
      font-size: 1.1rem;
      margin-bottom: 30px;
      color: #2d3748;
      line-height: 1.6;
    }
    
    .tagline strong {
      color: #0d4a8a;
    }
    
    /* Quiz container */
    .quiz-container {
      padding: 30px;
      display: none;
    }
    
    .quiz-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 25px;
    }
    
    .progress-container {
      width: 100%;
      background: #e2e8f0;
      border-radius: 10px;
      height: 12px;
      margin: 20px 0;
      overflow: hidden;
    }
    
    .progress-bar {
      height: 100%;
      background: linear-gradient(90deg, #38b2ac, #0d4a8a);
      width: 0%;
      transition: width 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    
    .question-number {
      color: #4a5568;
      font-weight: 600;
      font-size: 1rem;
    }
    
    .question-text {
      font-size: 1.5rem;
      color: #0d4a8a;
      margin-bottom: 30px;
      font-weight: 600;
      animation: fadeIn 0.8s ease-out;
    }
    
    .options-container {
      display: grid;
      grid-template-columns: 1fr;
      gap: 15px;
      margin-bottom: 30px;
    }
    
    .option-btn {
      background: white;
      border: 2px solid #cbd5e0;
      border-radius: 15px;
      padding: 18px 20px;
      font-size: 1.1rem;
      font-weight: 500;
      color: #2d3748;
      cursor: pointer;
      text-align: left;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      gap: 15px;
      animation: slideIn 0.5s ease-out;
      animation-fill-mode: backwards;
    }
    
    .option-btn:hover {
      border-color: #0d4a8a;
      background: #f0f7ff;
      transform: translateY(-3px);
    }
    
    .option-btn.selected {
      background: #ebf8ff;
      border-color: #0d4a8a;
      color: #0d4a8a;
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(13, 74, 138, 0.15);
    }
    
    .option-icon {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: #e2e8f0;
      display: flex;
      justify-content: center;
      align-items: center;
      font-weight: bold;
      font-size: 1.1rem;
      flex-shrink: 0;
      transition: all 0.3s ease;
    }
    
    .option-btn.selected .option-icon {
      background: #0d4a8a;
      color: white;
      transform: scale(1.1);
    }
    
    /* Loading screen */
    .loading-screen {
      padding: 60px 30px;
      text-align: center;
      display: none;
    }
    
    .loading-text {
      font-size: 2rem;
      color: #0d4a8a;
      margin-bottom: 40px;
      font-weight: 600;
      animation: pulse 2s infinite;
    }
    
    .loader {
      width: 80px;
      height: 80px;
      margin: 0 auto 40px;
      position: relative;
    }
    
    .loader-circle {
      position: absolute;
      width: 100%;
      height: 100%;
      border: 8px solid transparent;
      border-top-color: #0d4a8a;
      border-radius: 50%;
      animation: spin 1.2s linear infinite;
    }
    
    .loader-circle:nth-child(2) {
      border: 8px solid transparent;
      border-bottom-color: #38b2ac;
      animation: spinReverse 1.5s linear infinite;
    }
    
    /* Results screen */
    .results-screen {
      padding: 60px 30px;
      text-align: center;
      display: none;
    }
    
    .results-icon {
      font-size: 5rem;
      color: #38b2ac;
      margin-bottom: 25px;
      animation: bounce 1s ease;
    }
    
    .results-title {
      font-size: 2.5rem;
      color: #0d4a8a;
      margin-bottom: 20px;
      font-weight: 700;
    }
    
    .results-text {
      font-size: 1.2rem;
      color: #2d3748;
      margin-bottom: 40px;
      line-height: 1.6;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }
    
    .cta-button {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: linear-gradient(90deg, #ff6b35, #e55a2a);
      color: white;
      text-decoration: none;
      padding: 20px 40px;
      border-radius: 15px;
      font-size: 1.3rem;
      font-weight: 700;
      margin-top: 20px;
      transition: all 0.3s ease;
      box-shadow: 0 8px 20px rgba(229, 90, 42, 0.3);
    }
    
    .cta-button:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 25px rgba(229, 90, 42, 0.4);
    }
    
    /* Footer */
    .footer {
      background: #0d2538;
      color: white;
      padding: 30px;
      text-align: center;
    }
    
    .footer-links {
      display: flex;
      justify-content: center;
      gap: 25px;
      margin-bottom: 25px;
      flex-wrap: wrap;
    }
    
    .footer-links a {
      color: #a0aec0;
      text-decoration: none;
      transition: color 0.3s ease;
    }
    
    .footer-links a:hover {
      color: white;
    }
    
    .disclaimer {
      font-size: 0.85rem;
      color: #cbd5e0;
      margin-bottom: 15px;
      line-height: 1.6;
    }
    
    .disclaimer.small {
      font-size: 0.75rem;
      margin-top: 10px;
    }
    
    .copyright {
      font-size: 0.8rem;
      color: #a0aec0;
      margin-top: 20px;
    }
    
    /* Animation keyframes */
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }
    
    @keyframes slideIn {
      from { opacity: 0; transform: translateX(30px); }
      to { opacity: 1; transform: translateX(0); }
    }
    
    @keyframes bounce {
      0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
      40% {transform: translateY(-30px);}
      60% {transform: translateY(-15px);}
    }
    
    @keyframes spin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }
    
    @keyframes spinReverse {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(-360deg); }
    }
    
    @keyframes pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.05); }
      100% { transform: scale(1); }
    }
    
    /* Responsive adjustments */
    @media (max-width: 768px) {
      .top-bar {
        flex-direction: column;
        text-align: center;
        gap: 15px;
      }
      
      .logo {
        justify-content: center;
      }
      
      h1 {
        font-size: 1.8rem;
      }
      
      .question-text {
        font-size: 1.3rem;
      }
      
      .results-title {
        font-size: 2rem;
      }
      
      .cta-button {
        padding: 16px 30px;
        font-size: 1.1rem;
      }
    }
    
    @media (max-width: 480px) {
      .container {
        border-radius: 15px;
      }
      
      h1 {
        font-size: 1.6rem;
      }
      
      .tagline {
        font-size: 1rem;
      }
    }
    
    /* Entry animation */
    .animate-in {
      animation: fadeIn 0.6s ease-out forwards;
    }