@media (max-width: 768px) {
   .utilify-service {
      margin-top: 32px;
   }

   .header-service {
      margin-top: 10px;
      margin-bottom: 10px;
      font-size: 18px;
   }

   .map-size {
      width: 100%;
   }

   #detail_info {
      margin-top: 20px;
   }
   .input-filter {
      height: 40px;
   }
   .introductory-photo img  {
      height: 200px;
   }

   .list-service-dropdown {
      position: relative;
      width: 100%;
   }

   .list-service-dropdown .dropdown-toggle::after {
      display: none;
   }

   .list-service-dropdown .dropdown-toggle {
      display: flex;
      align-items: center;
      height: 72px;
      padding: 16px;
      border-radius: 10px;
      border: 1px solid #2CB5D2;
      background-color: rgba(44, 181, 210, 1);
      color: #fff;
      font-weight: 600;
      font-size: 16px;
      cursor: pointer;
      gap: 10px;
   }

   .list-service-dropdown .dropdown-toggle span {
      flex: 1;
   }

   .list-service-dropdown .dropdown-toggle .fa-chevron-down {
      font-size: 14px;
      transition: transform 0.3s;
   }

   .list-service-dropdown.open .dropdown-toggle .fa-chevron-down {
      transform: rotate(180deg);
   }

   .list-service-dropdown .dropdown-menu {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      z-index: 10;
      list-style: none;
      padding: 0;
      margin: 0;
      background: #fff;
      border-radius: 0 0 10px 10px;
      border: 1px solid #DEE5EF;
      border-top: none;
      overflow: hidden;
   }

   .list-service-dropdown.open .dropdown-menu {
      display: block;
   }

   .list-service-dropdown .dropdown-menu li a {
      display: flex;
      align-items: center;
      padding: 12px 16px;
      gap: 10px;
      text-decoration: none;
      color: #061839;
      font-weight: 600;
      font-size: 16px;
      border-bottom: 1px solid #DEE5EF;
   }

   .list-service-dropdown .dropdown-menu li:last-child a {
      border-bottom: none;
   }

   .list-service-dropdown .dropdown-menu li a.active {
      background-color: #EAF4FF;
      color: #0385FF;
   }

   .list-service-dropdown .dropdown-menu li a:hover {
      background-color: #f5f5f5;
   }

   .search-area{
      flex-direction: column;
   }
   .search-area .left,
   .search-area .right {
      padding: 0;
   }

   .service-content{
      margin-top: 0;
   }
}