.nut-hoat-dong {
  /* Màu sắc */
  background-color: #4caf50; /* Màu nền (xanh lá) */
  color: white; /* Màu chữ */

  /* Kích thước và căn lề */
  padding: 32px 15px; /* Độ rộng bên trong (trên-dưới, trái-phải) */
  font-size: 18px; /* Kích cỡ chữ */
  display: inline-block; /* Để có thể chỉnh kích thước */

  /* Trang trí thêm */
  text-decoration: none; /* Bỏ gạch chân mặc định của thẻ a */
  border-radius: 8px; /* Bo góc nút */
  border: none; /* Bỏ viền */
  cursor: pointer; /* Hiệu ứng bàn tay khi di chuyển chuột vào */
  width: calc(33.33% - 15px);
  box-sizing: border-box;
  text-align: left;
  font-family: "Times New Roman", Times, serif;
  font-weight: bold;
}

/* Hiệu ứng khi di chuột qua (Hover) */
.nut-hoat-dong:hover {
  background-color: #45a049; /* Đổi màu đậm hơn một chút */
}

.nut-hoat-dong:active {
  background-color: rgb(0, 123, 0);
}

.nut-hoat-dong-container {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: flex-start;
  margin-top: 20px;
  padding: 5px 30px;
}

.lop {
  padding: 10px 15px;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-weight: bold;
  font-size: 20px;
}

hr {
  border: 0;
  height: 2px;
  background-color: #ffbe32;
  margin: 40px 0;
  width: 100%;
  border-radius: 5px;
  opacity: 0.5;
}

@media (max-width: 600px) {
  .nut-hoat-dong {
    width: calc(50% - 15px); /* 2 nút 1 dòng trên điện thoại */
    font-size: 14px;
  }
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  padding-top: 180px;
  overflow-x: hidden;
  width: 100%;
  min-height: 100vh;
}

.region {
  border-style: hidden;
  padding: 10px 15px;
  width: 100%;
}

.fixed {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 1000;
}

.header {
  width: 100%;
  background: rgb(255, 33, 92);
  box-sizing: border-box;
  padding: 20px 0;
  padding-left: 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.name {
  color: white;
  font-family: Arial, Helvetica, sans-serif;
  padding: 2px 15px;
  margin: 0;
  text-transform: uppercase;
  font-size: 2rem;
}

.slogan {
  color: #ffffff;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  padding: 2px 15px;
  margin: 5px 0 0 0;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.nav-list {
  display: flex;
  justify-content: space-around;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

.navigation_menu {
  width: 100%;
  padding: 15px 0;
  background: rgb(252, 173, 26);
  box-shadow:
    0 4px 8px 0 rgba(0, 0, 0, 0.2),
    0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.nav-item a {
  color: white;
  text-decoration: none;
  padding: 10px 20px;
  display: block;
}

.nav-item a:hover {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 3px;
}

.nav-item a:active {
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 3px;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.8);
  min-width: 160px;
  list-style: none;
  padding: 0;
  z-index: 100;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-content li a:hover {
  background-color: #555;
}

a {
  text-decoration: none;
  color: aliceblue;
  padding-left: 10px;
  padding-right: 10px;
}

.content {
  width: 100%;
  padding: 20px;
  justify-content: center;
  display: flex;
  flex-direction: column;
}

.footer {
  width: 100%;
  padding: 2px 15px;
  border-style: hidden;
  background: rgb(255, 33, 92);
}

.Cntct {
  color: white;
  font-family: Arial, Helvetica, sans-serif;
  padding: 15px 10px;
  margin-top: 2px;
  font-size: 24px;
}

.information {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  right: 30px;
  bottom: 20px;
  color: white;
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    "Open Sans",
    "Helvetica Neue",
    sans-serif;
  padding: 10px 25px;
  font-size: 16px;
}

.information p {
  display: flex;
  align-items: center; /* Căn icon và chữ nằm ngang nhau */
  margin: 5px 0;
}

.fa {
  /* 2. Cố định độ rộng cho icon để phần chữ phía sau thẳng hàng */
  width: 30px;
  text-align: center;
  margin-right: 10px;
}

@media (max-width: 600px) {
  .name {
    font-size: 25px;
  }

  .slogan {
    font-size: 9px;
  }

  .navigation_menu {
    padding: 5px 0;
  }

  .nav-item {
    font-size: 14px;
  }

  .lop {
    font-size: 16px;
  }

  .Cntct {
    font-size: 20px;
  }

  .information {
    font-size: 14px;
  }

  body {
    padding-top: 140px;
  }
}
