
        body {
          background-color: #f8f9fa;
            font-family: Arial, sans-serif;
            margin: 0 auto;
            padding: 20px;
        }
        .section-title {
            text-align: center;
            color: #2c3e50;
        }
        .question-container, #resultsContainer {
            display: none;
        }
        .question-container.active, #resultsContainer.active {
            display: block;
        }
        .result-title {
          font-size: 1.5em;
          text-align: center;
        }
        .button-container {
            display: flex;
            justify-content: space-around;
        }
        button {
            font-family: Arial, sans-serif;
            font-size: 1em;
            padding: 10px 20px;
            background-color: #0755B1;
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s ease;
      }
        button:disabled {
            background-color: #bdc3c7;
            cursor: not-allowed;
        }
        .progress {
            margin-top: 20px;
            text-align: center;
            color: #7f8c8d;
        }
        .results-section {
          text-align: left;
            margin-bottom: 5px;
            border-bottom: 1px solid #0B3D77;
        }

        .results-section:last-child {
            border-bottom: none;
        }

        .total-score {
            font-size: 1.5em;
            text-align: start;
            display: inline-block;
            padding: 2px;
            border-radius: 5px;
        }

         .question-title {
           font-size: 1.3em;
         }
         .radio-container {
           padding: 30px;
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            max-width: 100%;
        }

        .radio-option {
            flex: 1 1 auto;
            width: calc(16.66% - 10px); /* For 6 buttons in a row */
        }

        /* Medium screens - 3 buttons per row (2 columns) */
        @media screen and (max-width: 1388px) {
            .radio-option {
                width: calc(33.33% - 10px);
            }
        }

        /* Extra small screens - 1 button per row */
        @media screen and (max-width: 510px) {
            .radio-option {
               width: 100%;
            }
        }

        @media screen and (max-width: 500px) {
            .radio-option label {
                font-size: 1em;
            }
            .question-title {
                font-size: 1em;
            }
            .radio-container {
              padding: 8px;
            }
        }

        /* Styling for the radio buttons */
        .radio-option label {
            display: block;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 4px;
            text-align: center;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .radio-option input[type="radio"] {
            display: none;
        }

        .radio-option input[type="radio"]:checked + label {
            background-color: #0755B1;
            color: white;
            border-color: #2e73c7;
        }

        .radio-option label:hover {
            background-color: #e0e0e0;
        }

        .radio-option input[type="radio"]:checked + label:hover {
            background-color: #0E67D6;
        }

        h1 {
            text-align: center;
            font-weight: normal;
        }

        h2 {
            text-align: center;
            font-weight: normal;
        }

        h3 {
            font-weight: normal;
        }

        #restartButton {
            margin: 20px;
        }

