  /* basic page reset */
  .main-basic-content{
    max-width: none;
    margin: 0;
    padding: 0;
  }
  .basic-page-breadcrumb{
    display: none;
  }

  .quizHeader {
    width: 100%;
    margin-top: 3%;
  }
  .quizHeader .desktop{
    display: block;
  }
  .quizHeader .mobile,
  .headerText .mobile{
    display: none;
  }
  .headerBanner img{
    width: 100%;
    height: auto;
  }
  .headerText{
    padding: 30px 20px;
    text-align: center;
    background: #dcdcdc;
  }
  .headerText h1{
    font-size: 36px;
  }
  .headerText p{
    font-size: 18px;
  }
  .container_wrap {
    max-width: 1320px;
    margin: 0 auto;
  }
  .formWrap{
    width: 55%;
    margin: 5% auto;
  }
  .formDesplay{
    max-width: 100%;
    background: #ffffff;
    padding: 2em;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    position: relative;
  }
  .quiz-progress {
    margin-bottom: 1em;
  }
  .quiz-progress-text {
    font-weight: bold;
    color: #298719;
    margin-bottom: 0.25em;
    text-align: center;
  }
  .quiz-progress-bar {
    height: 10px;
    background: #f2f2f2;
    border-radius: 5px;
    overflow: hidden;
  }
  .quiz-progress-bar-inner {
    height: 100%;
    width: 0%;
    background: #298719;
    transition: width 0.3s ease;
  }
  #quizForm .question {
    display: none;
  }
  #quizForm .question.active {
    display: block;
  }
  #quizForm .question .question-title {
    font-size: 20px;
    font-weight: bold;
    margin: 30px 0;
  }
  #quizForm .question input[type="radio"] {
    display: none;
  }
  #quizForm .question label {
    display: block;
    margin: 0.5em 0;
    background: #f8f8f8;
    padding: 0.75em;
    border-radius: 6px;
    border: 1px solid #ccc;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
    user-select: none;
  }
  #quizForm .question input[type="radio"]:checked + label {
    background: #298719;
    color: #ffffff;
    border-color: #1e5d33;
  }
  #quizForm .question label:hover{
    background-color: #e0f2cc;
  }
  #quizForm .question button {
    background: #298719;
    color: #ffffff;
    padding: 0.75em 1.5em;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 1em;
    transition: all 0.3s ease;
  }

  #quizForm .question .btn-group {
    display: flex;
    justify-content: space-between;
    margin-top: 1em;
  }
  #quizForm .question .btn-group button:hover{
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  }
  .quizResult {
    display: none;
  }

  .quizResult .result-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3em 1em;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3em;
    align-items: center;
  }
  .quizResult .result-image {
    order: 1;
  }
  .quizResult .result-text {
    order: 2;
  }
  .quizResult .result-image video {
    width: 100%;
    height: auto;
  }
  .quizResult .result-text p:first-child {
    margin-bottom: 0.5em;
    /* color: #555555; */
    font-size: 1.5em;
  }
  .quizResult .result-text #scoreIcon{
    margin-right: 20px;
    width: 80px;
    height: auto;
  }
  .quizResult .result-text .score {
    color: #298719;
    font-size: 2.5em;
    margin: 0.2em 0 0.5em 0;
    line-height: 1.2;
    vertical-align: middle;
    font-weight: 600;
  }
  .quizResult .result-text p:last-of-type {
    line-height: 1.6;
    margin-top: 1em;
    margin-bottom: 2em;
  }
  .quizResult .result-buttons {
    display: flex;
    gap: 1em;
    flex-wrap: wrap;
    align-items: flex-end;
  }
  .btn{
    min-width: none;
  }
  .quizResult .result-buttons a{
    /* margin-top: 1em; */
  }
  .quizResult .result-buttons a,
  .quizResult .result-buttons button {
    background-color: #298719;
    color: #ffffff;
    /* padding: 1em 2em; */
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
  }
  .quizResult .result-buttons button.restart {
    background-color: #ffffff;
    color: #298719;
    border: 1px solid #298719;
  }
  .quizResult .result-buttons a:hover,
  .quizResult .result-buttons button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  }
  .result-footer {
    background: #dcdcdc;
    color: #000000;
    text-align: center;
    padding: 2em;
    margin-bottom: -70px;
  }
  .result-footer a {
    color: #000000;
    text-decoration: underline;
  }
  
  .custom-alert-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(50 50 50 / 72%);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
  }
  
  .custom-alert-overlay.show {
    display: flex !important;
    animation: fadeIn 0.3s ease;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  
  @keyframes slideIn {
    from { 
      opacity: 0;
      transform: translateY(-30px) scale(0.8);
    }
    to { 
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }
  
  .custom-alert {
    background: #ffffff;
        border-radius: 10px;
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
        padding: 2.5em 2em;
        max-width: 420px;
        width: 90%;
        text-align: center;
        animation: slideIn 0.4s ease;
  }
  
  .custom-alert p {
    line-height: 1;
    font-size: 16px;
  }
  
  .custom-alert-button {
    background: #298719;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
    margin-top: 25px;
  }
  
  .custom-alert-button:hover {
    background: #298719;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  }
  
  .custom-alert-button:active {
    transform: translateY(-1px);
  }

  /* Mobile responsive */
  @media (max-width: 768px) {
    .quizHeader .desktop{
      display: none;
    }
    .quizHeader .mobile,
    .headerText .mobile{
      display: block;
    }
    .headerText{
      text-align: left;
    }
    .headerText p{
      font-size: 16px;
    }
    .formWrap{
      width: 100%;
    }
    .quizResult .result-content {
      grid-template-columns: 1fr;
      gap: 2em;
      padding: 0 20px;
    }
    .quizResult .result-image {
      order: 2;
    }
    .quizResult .result-text {
      order: 1;
    }
    .quizResult .result-text #scoreIcon{
      width: 60px;
      height: auto;
    }
    .quizResult .result-text h2 {
      font-size: 2em;
    }
    .quizResult .result-buttons {
      justify-content: center;
      /* width: 80%;
      margin: 0 auto; */
    }

    .quizResult .result-buttons a,
    .quizResult .result-buttons button {
      flex: 1;
      min-width: 200px;
      text-align: center;
    }
    .custom-alert {
      width: 80%;
      padding: 1.5em;
    }
  }
