body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      padding: 20px;
      background-color: #f4f6f8;
      color: #333;
      margin: 0;
    }
    h2 {
      text-align: center;
      color: #2a2a2a;
      margin-bottom: 30px;
      font-size: 1.5rem;
    }
    .question {
      display: none;
      opacity: 0;
      transition: all 1.5s ease;
      margin-bottom: 25px;
      background-color: #ffffff;
      border: 1px solid #d0d7de;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      border-radius: 12px;
      padding: 16px;
      width: 100%;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      box-sizing: border-box;
    }
    #submission, #reload {
      display: none;
      opacity: 0;
      transition: all 1.5s ease;
    }
    .question p {
      font-size: 1.05rem;
      font-weight: 600;
      margin-bottom: 12px;
    }
    .question label {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 10px;
      font-size: 0.98rem;
      cursor: pointer;
    }
    .feedback {
      margin-top: 10px;
      font-weight: bold;
      font-size: 0.95rem;
    }
    button {
      display: block;
      margin: 30px auto;
      padding: 12px 24px;
      font-size: 1rem;
      font-weight: bold;
      color: green;
      background-color: white;
      border-radius: 15px;
      border: 2px solid green;
      cursor: pointer;
      transition: background-color 0.3s ease, color 0.3s ease;
    }
    button:hover {
      background-color: green;
      color: white;
    }
    input[type="radio"], input[type="checkbox"] {
      transform: scale(1.2);
      accent-color: green;
    }
    #progress-bar-container {
      height: 10px;
      background: #ddd;
      border-radius: 5px;
      overflow: hidden;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }
    #progress-bar {
      height: 100%;
      width: 0%;
      background: linear-gradient(to right, #43cea2, #185a9d);
      transition: width 0.5s ease;
    }
    .fa-solid.fa-fire {
      color: red;
    }
	.fa-solid.fa-bolt {
      color: gold;
    }