@media ((max-width: 1023px) and (min-width: 768px)) {
  .mini-services-banner {
    border: 1px solid #0aaf50;
    padding: 3px;
    margin-top: 10px;
    display: inline-block;
  }
  .mini-services-banner img {
    width: 21vw;
    height: auto;
  }
  .services-detail-title {
    background-color: #005498;
    color: #fff;
    height: 35px;
    padding-top: 7px;
    padding-left: 10px;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-size: 14px;
  }

  .services-detail {
    margin-top: 10px;
    max-width: 98vw;
  }

  .services-detail p {
    text-align: justify;
    margin-top: 2px;
    margin-bottom: 5px;
    font-size: 14px;
    line-height: 1.2;
  }
  .mini-services-banner-group {
    text-align: right;
    padding-right: 0px;
  }
  .services-dest {
    margin-top: 10px;
  }
  .fask-detail-text {
    font-size: 14px;
    width: 100%;
    margin: 0px 10px;
  }
  .fask-image {
    width: 100%;
    margin: 0px 10px;
  }

  .fask-image p {
    font-size: 15px;
  }

  .fask-dest {
    margin-top: 25px;
    background-color: #f2f2f2;
  }

  .fask-title {
    margin-top: 15px;
    margin-bottom: 15px;
    width: 100%;
    height: 40px;
    display: flex; /* RẤT QUAN TRỌNG: Kích hoạt Flexbox cho thẻ cha */
    align-items: center; /* Căn giữa các item con theo chiều dọc */
    justify-content: center; /* Tùy chọn: Căn giữa toàn bộ nhóm theo chiều ngang */
    /*justify-content: space-between;  Hoặc nếu bạn muốn hr đẩy ra sát 2 bên */
    gap: 1px; /* Tùy chọn: Khoảng cách giữa các phần tử */
  }
  .fask-title-line {
    width: 14%;
  }

  .fask-title-line hr {
    background-color: #005498;
  }

  .fask-title-text {
    color: #005498;
    font-size: 15px;
    font-weight: bold;
    font-style: italic;
    padding-left: 10px;
    padding-right: 10px;
    display: inline-block; /* RẤT QUAN TRỌNG: Biến div thành inline-block */
  }

  /* Tùy chọn: Căn giữa ảnh và tạo khoảng cách với phần văn bản bên dưới */
  .mini-services-banner-group {
    text-align: center; /* Căn giữa ảnh */
    margin-bottom: 20px; /* Tạo khoảng trống giữa ảnh và khối văn bản */
  }

  /* Tùy chọn: Giới hạn kích thước ảnh để không bị quá lớn */
  .mini-services-banner img {
    max-width: 300px; /* Đặt chiều rộng tối đa cho ảnh */
    width: 100%;
    height: auto;
  }

  .container {
    max-width: 98vw;
  }
  .support-manu-title-bg {
    height: 38px;
    width: auto;
    font-size: 13px;
    background-image: url("../images/title-line.png");
    background-size: contain;
    background-repeat: no-repeat; /* Do not repeat the image */
    color: #ffffff;
    padding-top: 9px;
    padding-left: 7px;
  }
  .support-manu-title-line {
    align-self: flex-start;
    border-color: #dddddd;
    border-style: solid;
    background-image: linear-gradient(to bottom, #fff, #dadada);
    margin-top: 15px;
    height: 42px;
    width: 99%;
  }
  /* CSS để sắp xếp các đối tượng theo chiều ngang */
  .search-form-container {
    display: flex; /* Sử dụng Flexbox để sắp xếp */
    flex-direction: column; /* BẮT BUỘC: Xếp các phần tử con thành 1 cột dọc */
    align-items: center; /* Canh giữa cột đó theo chiều ngang */
    gap: 15px; /* Khoảng cách giữa các đối tượng */
    align-items: center; /* Căn chỉnh các đối tượng theo chiều dọc */
    padding-top: 10px;
    padding-bottom: 5px;
    margin: 10px auto; /* Căn giữa form */
    width: 100%;
  }

  .search-form-container select,
  .search-form-container input[type="text"] {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    flex-shrink: 0; /* Ngăn các phần tử co lại */
    height: 45px;
    width: 100%;
  }

  .search-form-container select {
    background-image: linear-gradient(45deg, transparent 50%, gray 50%),
      linear-gradient(135deg, gray 50%, transparent 50%),
      linear-gradient(to right, #ccc, #ccc);
    background-position: calc(100% - 20px) calc(1em + 2px),
      calc(100% - 15px) calc(1em + 2px), calc(100% - 2.5em) 0.5em;
    background-size: 5px 5px, 5px 5px, 1px 1.5em;
    background-repeat: no-repeat;
    -webkit-appearance: none; /* Dành cho trình duyệt Webkit (Chrome, Safari) */
    -moz-appearance: none; /* Dành cho trình duyệt Mozilla (Firefox) */
    appearance: none; /* Tiêu chuẩn */
  }

  .search-form-container select:focus {
    background-image: linear-gradient(45deg, green 50%, transparent 50%),
      linear-gradient(135deg, transparent 50%, green 50%),
      linear-gradient(to right, #ccc, #ccc);
    background-position: calc(100% - 15px) 1em, calc(100% - 20px) 1em,
      calc(100% - 2.5em) 0.5em;
    background-size: 5px 5px, 5px 5px, 1px 1.5em;
    background-repeat: no-repeat;
    border-color: green;
    outline: 0;
  }

  .search-form-container button {
    height: 45px;
    width: 100%;

    /* Các thuộc tính mới cho background ảnh */
    background-image: url("../images/button-bg.png"); /* Thay thế bằng đường dẫn ảnh của bạn */
    background-size: cover; /* Phóng ảnh để phủ kín toàn bộ button, giữ tỷ lệ */
    background-position: center; /* Căn giữa ảnh trong button */
    background-repeat: no-repeat; /* Không lặp lại ảnh */

    /* Các thuộc tính cũ của button */
    color: white; /* Màu chữ trên button */
    cursor: pointer;
    border: none;
    padding: 8px 12px; /* Đặt lại padding vì nó bị bỏ khỏi nhóm trên */
    font-size: 1rem; /* Đặt lại font-size */
    flex-shrink: 0;
    min-width: 100px; /* Đảm bảo button có đủ chiều rộng cho ảnh */
    min-height: 40px; /* Đảm bảo button có đủ chiều cao cho ảnh */
    /* Để chữ hiển thị rõ trên ảnh, bạn có thể cần điều chỉnh màu chữ hoặc thêm text-shadow */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  }
}
