  .ServiceCategory {
    position: relative;
    display: inline-block;
    width: 100%;
    border-top: 2px solid #ddd;
  }



.ServiceCategory .Title a {
    color: #fff;
    font-size: 14px;
}

  /* Ti&ecirc;u đề */
  .ServiceCategory .Title {
    background: #1e73be;
    color: #fff;
    padding: 12px 15px;
    cursor: pointer;
    user-select: none;
    background-image: url(https://storage-vnportal.vnpt.vn/gov-tnn/7350/icons/title_trong-dong.png);
    background-position: right top;
    background-repeat: no-repeat;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
  }

  .ServiceCategory .Title span::after {
    content: "▼";
    float: right;
    font-size: 11px;
    transition: transform 0.2s;
  }

  /* Dropdown */
  .ServiceCategory .Content {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    border: 1px solid #ddd;
    border-top: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: none;
    z-index: 9999;
    max-height: 400px;
    overflow-y: auto;
  }

  /* Desktop: hover mở */
  @media (hover: hover) {
    .ServiceCategory:hover .Content {
      display: block;
    }

    .ServiceCategory:hover .Title span::after {
      transform: rotate(180deg);
    }
  }

  /* Mobile + JS */
  .ServiceCategory.show .Content {
    display: block;
  }

  .ServiceCategory.show .Title span::after {
    transform: rotate(180deg);
  }

  /* Danh s&aacute;ch */
  .ServiceCategory .nav {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .ServiceCategory .nav li {
    border-bottom: 1px solid #eee;
  }

  .ServiceCategory .nav li:last-child {
    border-bottom: none;
  }

  .ServiceCategory .nav a {
    display: block;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
    transition: 0.2s;
  }

  .ServiceCategory .nav a:hover {
    background: #f5f5f5;
    color: #0f64b7;
  }

  .ServiceCategory .border {
    display: flex;
    align-items: center;
    border: none !important;
  }


.ServiceCategory img {
  display: none !important;
}

  @media (max-width: 768px) {
    .ServiceCategory {
      width: 100%;
    }

    .ServiceCategory .Content {
      position: static;
      width: 100%;
      border-top: 1px solid #ddd;
      box-shadow: none;
      max-height: 50vh;
    }
  }