body {
    font-family: Arial, sans-serif;
    margin: 0;
    background-color: #f4f7fb;
    color: #333;
    line-height: 1.6;
  }
  
  .hero, .overview, .quiz-section, .lead-form, .calendly-section {
    padding: 2rem;
    margin: 2rem auto;
    max-width: 900px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
  }
  
  h1, h2 {
    color: #004085;
  }
  
  table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
  }
  
  table, th, td {
    border: 1px solid #ccc;
  }
  
  th, td {
    padding: 0.75rem;
    text-align: left;
  }
  
  input, textarea {
    width: 100%;
    padding: 0.75rem;
    margin: 0.5rem 0 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
  }
  
  .btn-primary, .btn-secondary {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    color: white;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .btn-primary {
    background-color: #007bff;
    border: none;
  }
  
  .btn-secondary {
    background-color: #28a745;
    border: none;
  }
  
  footer {
    text-align: center;
    padding: 2rem;
    font-size: 0.9rem;
    color: #666;
  }
