body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #f5f9ff;
    color: #1e2d4b;
    margin: 0;
    padding: 0;
  }
  
  .container {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  }
  
  h1 {
    color: #1d4ed8;
    text-align: center;
  }
  
  .category {
    margin-bottom: 30px;
    border-top: 2px solid #e0e7ff;
    padding-top: 20px;
  }
  
  .question-block {
    margin-bottom: 20px;
  }
  
  .scale {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
  }
  
  .scale label {
    flex: 1;
    text-align: center;
    cursor: pointer;
  }
  
  .scale input[type="radio"] {
    display: none;
  }
  
  .scale span {
    display: inline-block;
    padding: 12px;
    background-color: #e0e7ff;
    border-radius: 6px;
    transition: 0.2s ease;
  }
  
  .scale input[type="radio"]:checked + span {
    background-color: #3b82f6;
    color: white;
  }
  
  .scale-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #6b7280;
  }
  
  button[type="submit"] {
    display: block;
    margin: 30px auto 0;
    padding: 12px 24px;
    background-color: #2563eb;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
  }
  
  button[type="submit"]:hover {
    background-color: #1e40af;
  }
  
  .card {
    background: #eef4ff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    margin-bottom: 20px;
  }
  
  .result-card {
    border-left: 8px solid #3b82f6;
  }
  
  .scores-card {
    background: #f8fafc;
  }
  
  .highlight {
    color: #2563eb;
  }
  
  .btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #2563eb;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    transition: 0.3s ease;
  }
  
  .btn:hover {
    background-color: #1d4ed8;
  }
  