
    body {
      background: #000;
      color: #ffffff;
      font-family: 'Segoe UI', sans-serif;
      overflow-x: hidden;
    }

    /* Sidebar from right */
    .sidebar {
      height: 100%;
      width: 250px;
      position: fixed;
      top: 0;
      right: -250px;
      background-color: #1c1c1c;
      z-index: 1050;
      padding-top: 60px;
      transition: right 0.3s ease;
      margin-top:66px;
    }

    .sidebar.active {
      right: 0;
    }

    .sidebar a {
      display: block;
      color: #ccc;
      padding: 10px 20px;
      text-decoration: none;
      
    }

    .sidebar a:hover {
      background: #e22336;
      color: #fff;
    }

    .overlay {
      position: fixed;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      background-color: rgba(0,0,0,0.7);
      display: none;
      /*z-index: 1040;*/
    }

    .overlay.active {
      display: block;
    }

    .topbar {
      position: fixed;
      width: 100%;
      top: 0;
      left: 0;
      background: #000;
      z-index: 1060;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 20px;
    }

    .menu-btn {
      font-size: 28px;
      color: #fff;
      cursor: pointer;
    }

    .logo img {
      height: 100px;
    }

    .container-main {
      margin-top: 60px;
    }

    .step-heading {
      text-align: center;
      margin-bottom: 40px;
    }

    
    .toggle-link .arrow {
      transition: transform 0.3s ease;
    }
    
    .toggle-link[aria-expanded="true"] .arrow {
      transform: rotate(180deg);
    }
    .toggle-link .arrow {
      transition: transform 0.3s ease;
    }
    
    .toggle-link[aria-expanded="true"] .arrow {
      transform: rotate(180deg);
    }
    
    .question-section {
    margin-top: 40px;
    text-align: center;
  }

  .question-title {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
  }

  .option-card{
    background: #1a1a1a;
    border: 2px solid #333;
    color: #fff;
    padding: 18px 20px;
    /*border-radius: 12px;*/
    margin-bottom: 16px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: 0.3s;
  }

  .option-card:hover,
  .option-card.selected {
    border-color: #e22336;
    background-color: #222;
  }
    
    
  .btn-continue {
    background-color: #e22336;
    color: #fff;
    padding: 14px 30px;
    font-weight: bold;
    border: none;
    /*border-radius: 8px;*/
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
    float: right;
  }

  .main-form {
    padding-top: 80px;
  }
  
    .option-card small {
      display: block;
      font-weight: normal;
      font-size: 0.9rem;
      margin-top: 0.3rem;
    }

    .form-options {
      max-width: 480px;
      margin: auto;
    }
        
       .card-age {
      background-color: #1c1c1c;
      overflow: hidden;
      transition: all 0.3s;
      cursor: pointer;
      text-align: center;
      border: 2px solid transparent;
      /*width: 224px;*/
    }

    .card-age:hover {
      transform: scale(1.05);
      box-shadow: 0 0 25px rgb(255 7 7 / 50%);
    }

    .card-age.selected {
      box-shadow: 0 0 25px rgb(255 7 7 / 50%);
    }

    .card-age img {
      height: 140px;
    }

    .card-age-text {
      background-color: #e22336;
      font-weight: bold;
      color: #f1f1f1;
    }

    .form-check-label {
      color: #8d8d8d;
      font-size: 12px;
      padding-left: 8px;
    }

    .form-check-label a {
      color: #8d8d8d;
    }

    .form-check .form-check-input {
      float: none;
      margin-left: -1.5em;
    }

    #agreeError {
      background-color: #e22336;
      border-radius: 0px;
    }

    /*.padding {*/
    /*  margin-top: 0px;*/
    /*  padding-top: 176px;*/
    /*}*/
    
    a{
        text-decoration:none;
    }
      .option-card input[type="radio"] {
    display: none;
  }
  .radio-circle {
    width: 20px;
    height: 20px;
    border: 2px solid #e22336;
    border-radius: 50%;
    margin-right: 15px;
    position: relative;
  }

  .radio-circle::after {
    content: "";
    width: 10px;
    height: 10px;
    background-color: #e22336;
    border-radius: 50%;
    position: absolute;
    top: 3px;
    left: 3px;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .option-card.selected .radio-circle::after {
    opacity: 1;
  }
  
  .custom-checkbox {
    display: flex;
    align-items: center;
    background: #1c1c1c;
    padding: 15px 20px;
    border: 2px solid #333;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
    margin-bottom: 10px;
}

.custom-checkbox input[type="checkbox"] {
    display: none;
}

.checkbox-box {
    width: 20px;
    height: 20px;
    border: 2px solid #888;
    background-color: transparent;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    position: relative;
}

/* Checkmark */
.checkbox-box::after {
    content: '';
    width: 6px;
    height: 12px;
    border: solid transparent;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    position: absolute;
    opacity: 0;
}

/* Label text */
.checkbox-label {
    color: #fff;
    font-weight: normal;
    transition: 0.3s;
}

/* Checked styles */
.custom-checkbox input[type="checkbox"]:checked + .checkbox-box {
    background-color: #e22336;
    border-color: #e22336;
}

.custom-checkbox input[type="checkbox"]:checked + .checkbox-box::after {
    border-color: white;
    opacity: 1;
}

.custom-checkbox input[type="checkbox"]:checked ~ .checkbox-label {
    color: #e22336;
    font-weight: bold;
}
  #field-error {
    background-color: #e22336;
    color: white;
    padding: 10px 15px;
    margin-top: 20px;
    margin-bottom: 10px;
  }
  
    .progress-wrapper {
    /*position: fixed;*/
    top: 0;
    width: 100%;
    z-index: 9999;
    /*padding-bottom: 10px;*/
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding-top: 120px;
    background: #000;
  }

  .progress-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .back-arrow {
    cursor: pointer;
    font-size: 24px;
    color: #e22336;
    text-decoration:none;
  }

  .progress-text {
    font-weight: 700;
    color: #e22336;
    min-width: 50px;
    text-align: right;
  }

  /* Make the progress bar fill the space between arrow and percentage */
  .progress-container {
    flex: 1;
    margin: 0 15px;
  }
    @media (min-width: 768px) {
      .col-md-3 {
        flex: 0 0 auto;
        width: 22%;
      }
      .padding8{
          padding: 0px 80px
      }
    }

  @media (max-width: 500px) {
    .main-form {
      padding-top: 5px;
    }
    .padding {
        /*padding-top: 72px;*/
      }
      .progress-wrapper {
    padding-top: 120px;
    }
  }
