<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* styles.css */

body {
  font-family: "Nunito", sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f5f5f5;
}

.container {
  width: 100%;
  margin: 0 auto;
}

.header_thanh_menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ffffff;
  padding: 10px 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  font-size: 20px;
}

.menu-1,
.menu-2,
.menu-3 {
  display: flex;
  align-items: center;
}

.header__logo img {
  width: 130px;
  margin-left: 40px;
}

.header_thanh_timkiem {
  display: flex;
  align-items: center;
  width: 500px;
  background-color: #eeeeee;
  padding: 5px;
  border-radius: 10px;
  box-shadow: 0px 4px 20px 0px rgba(44, 101, 144, 0.1);
}

#search {
  font-size: 20px;
  border: none;
  background: none;
  padding: 8px;
  width: 250px;
  outline: none;
}

.submitSearch {
  background-color: #ff6600;
  color: white;
  border: none;
  padding: 8px 25px;
  margin-left: 120px;
  border-radius: 5px;
  cursor: pointer;
}

.header_thongtin .nav-icons {
  display: flex;
  align-items: center;
}

.icon1,
.icon2,
.icon {
  display: flex;
  align-items: center;
  margin-right: 40px;
  cursor: pointer;
}

.icon2 a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: black;
}

.icon2 a img {
  margin-right: 5px;
}

.icon1 a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: black;
}

.icon1 a img {
  margin-right: 5px;
}

.main-navbar {
  display: flex;
  background-color: #e53935;
  align-items: center;
  height: 50px;
  padding: 20px;
}


.menu-right {
  list-style: none;
  display: flex;
  font-size: 15px;
  gap: 50px;
  text-align: center;
  margin: 0 auto;
  padding: 20px;

}

.menu-right li a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  padding: 20px 30px;
  transition: border-bottom 0.2s, color 0.2s;
  position: relative;
}

.menu-right li a::after {
  content: '';
  display: block;
  height: 2px;
  background-color: white;
  width: 0;
  transition: width 0.3s;
  position: absolute;
  bottom: 0;
  left: 0;
}

.menu-right li a:hover::after,
.menu-right li a:focus::after {
  width: 100%;
}

.menu-right li a:hover {
  background-color: #f5f5f5;
  color: #0e1014;
  font-weight: 700;
}


.icon img {
  width: 25px;
  margin-right: 5px;
}

.language-dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  padding: 5px;
  width: 80px;
}

.language-dropdown:hover .dropdown-content {
  display: block;
}

.language-option {
  display: flex;
  align-items: center;
  padding: 5px;
  cursor: pointer;
}

.language-option img {
  width: 20px;
  margin-right: 5px;
}



/* ===== Footer ===== */
/* ===== ÄÄƒng kÃ½ báº£n tin ===== */
.newsletter {
  background: #f5f5f5;
  padding: 30px 20px;
}

.newsletter-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
}

.newsletter .text h2 {
  font-size: 24px;
  color: #111;
  margin-bottom: 5px;
}

.newsletter .text p {
  color: #666;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.newsletter-form input {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  flex: 1;
  min-width: 250px;
  transition: 0.3s;
}

.newsletter-form input:focus {
  border-color: #d70018;
  outline: none;
}

.newsletter-form button {
  padding: 10px 20px;
  background: #28a745;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.3s;
}

.newsletter-form button:hover {
  background: #218838;
}

.newsletter-form button:active {
  transform: scale(0.98);
}

.footer {
  background: #fff;
  border-top: 1px solid #ddd;
  padding: 30px 20px 10px;
  font-size: 14px;
  color: #333;
  margin-top: 20px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

.footer-column {
  flex: 1 1 250px;
  margin: 10px;
}

.footer-column h3 {
  color: #d70018;
  margin-top: 50px;
}

.footer-logo {
  width: 120px;
  margin: 50px 60px;
  display: block;
}

.map {
  flex: 1 1 300px;
  max-width: 350px;
  margin: 10px;
}

.map iframe {
  width: 100%;
  height: 250px;
  border: 0;
  border-radius: 8px;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  padding-top: 10px;
  border-top: 1px solid #ddd;
  font-size: 13px;
  color: #666;
}</pre></body></html>