@media (max-width: 767px) {
  .package-content {
    display: none;
  }

  .package-content.active {
    display: block;
  }

  .future-image-swiper.active {
    outline: 2px solid #0073aa;
    transition: outline 0.3s ease;
  }
}


 .tooltip-container {
      position: relative;
      display: inline-block;
    }

    .info-icon {
      width: 24px;
      height: 24px;
      background-color: #cfe1ff;
      color: #3b82f6;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      cursor: pointer;
    }

    .tooltip-box {
      position: absolute;
      top: 30px;
      left: 0;
      background: white;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      padding: 16px;
      width: 240px;
      z-index: 10;
      display: none;
    }

    .tooltip-container:hover .tooltip-box {
      display: block;
    }

    .tooltip-title {
      font-weight: bold;
      margin-bottom: 8px;
    }

    .tooltip-close {
      position: absolute;
      top: 10px;
      right: 10px;
      background: transparent;
      border: none;
      font-size: 16px;
      cursor: pointer;
    }



    
    .agents-profile__table {
      width: 100%;
      border-collapse: collapse;
      text-align: center;
      /* box-shadow: 0 2px 8px rgba(0,0,0,0.1); */
    }

    .agents-profile__table-head th {
      /* background: #f7f7f8; */
      padding: 0 14px 1.5rem;
      font-size: 14px;
      font-weight: bold;
      text-transform: uppercase;
      width: 240px;
      border-bottom: 1px solid #A7B0B8 !important;
      border: 0;
      border-block-start: 0px !important;
    }

    .agents-profile-slide__tag{
     background: #f7f7f8;
      padding: 14px;
      display: block;
      border-radius: 4px;
    }

    .agents-profile__table-head th:first-child{
      border-bottom:  0px !important;
       padding: 0 14px 1.5rem;
       vertical-align: middle;
    }

    .agents-profile__table-head th span{
       background: #f7f7f8;
      padding: 14px;
      display: block;
      border-radius: 4px;
    }

    .agents-profile__table-head th:first-child {
      text-align: left;
    }

    .agents-profile__table-body tr:first-child td{
      padding-top: 1.5rem;
    }

    .agents-profile__table-body td {
      padding: 18px 12px;
      border: 0px solid #eee;
      font-size: 14px;
      background-color: #fff !important;
    }

    .agents-profile__table-body td:first-child {
      text-align: left;
      font-weight: 500;
      color: #333;
    }

    /* Tick and cross icons */
    .tick {
      color: #e4002b;
      font-size: 18px;
      font-weight: bold;
    }
    .cross {
      color: #ccc;
      font-size: 18px;
      font-weight: bold;
    }

 /* Responsive */
    @media (max-width: 767px) {
        .agents-profile__table, .agents-profile__table-head,  .agents-profile__table-body, .agents-profile__table th, .agents-profile__table td, .agents-profile__table tr {
        display: block;
      }
      .agents-profile__table-head {
        display: none;
      }
      .agents-profile__table-body tr {
        margin-bottom: 15px;
        border: 1px solid #ddd;
        border-radius: 6px;
        padding: 10px;
      }
      .agents-profile__table-body td {
        text-align: right;
        border: none;
        display: flex;
        justify-content: space-between;
      }
      .agents-profile__table-body td:first-child {
        font-weight: bold;
        color: #000;
      }
    }