body {
  margin: 0;
  font-family: 'Times New Roman', Times, serif;
  background-image: url('background.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #333;
}

header {
  width: 100%;
  min-height: 300px; /* Tăng chiều cao để chứa logo và chữ */
  background-size: cover;
  background-color: #ffffff;
  display: flex;
  flex-direction: column; /* Cho phép logo và chữ xếp dọc */
  align-items: center;
  justify-content: center;
  padding: 20px;
  border-bottom: 1px solid #ddd;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  box-sizing: border-box;
}

.logo {
  max-width: 100%;
  max-height: 200px; /* Đảm bảo logo hiển thị rõ */
  height: auto;
  width: auto;
  object-fit: contain;
  display: block;
  margin-bottom: 10px;
}

/* Container co giãn */
.container {
  display: flex;
  flex-wrap: wrap;
  padding: 30px;
  gap: 20px;
  box-sizing: border-box;
}

.column {
  flex: 1 1 300px;
  background-color: #fffdfd; /* nền trắng hơi hồng nhẹ */
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #f0dada; /* viền hồng nhạt */
  box-shadow: 0 4px 12px rgba(204, 0, 0, 0.05); /* bóng đỏ nhạt */
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.column:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(204, 0, 0, 0.2); /* bóng đỏ đậm hơn */
  border: 1px solid #cc0000; /* viền đỏ nổi bật */
  background-color: #fff8f8; /* nền đỏ nhạt khi hover */
}

.column h2 {
  margin-top: 0;
  color: #333;
  text-align: center;
}

.column p {
  color: #666;
  line-height: 1.6;
}

.column.boxes {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.box {
  background-color: #ffffff;
  border: 2px solid #ff0000;
  padding: 15px;
  margin: 5px auto; /* tạo khoảng cách trên dưới giữa các box */
  border-radius: 8px;
  font-weight: bold;
  text-align: center;
  display: block; /* đảm bảo thẻ <a> hiển thị như khối */
  transition: background-color 0.3s, transform 0.3s;
  text-decoration: none;
  width: 92%;
 }

.box:hover {
  background-color: #ffff66;
  transform: scale(1.02);
}


.box .highlight {
  font-family: 'Times New Roman', Times, serif;
  font-weight: bold;
}

 
/* Responsive cho màn hình nhỏ */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    padding: 15px;
    min-height: auto;
  }

  .logo {
    max-height: 100px;
  }

  .container {
    flex-direction: column;
    padding: 15px;
  }
}

h1 {
  background-color: #cc0000; /* nền đỏ đậm */
  color: #ffffff;            /* chữ trắng */
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  padding: 15px 20px;
  margin: 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  font-family: 'Times New Roman', Times, serif;
  width: 100%;
  line-height: 1.4;
}

.address {
  font-size: 14px;
  display: block;
  margin-top: 5px;
  color: #ffffff;
  font-weight: normal;
}
h2 {
  font-size: 20px;
  color: #ff0000;
  text-align: center;
  line-height: 1.4;
  margin: 0;
  font-family: 'Times New Roman', Times, serif;
}

.highlight {
  color: #ff0000 !important;
  font-weight: bold;
  font-size: 16px;
  text-shadow: 1px 1px 2px rgba(255, 0, 0, 0.2);
  letter-spacing: 0.5px;
}
.box-text {
  color: #ff0000 !important;
  font-weight: bold;
  font-size: 16px;
}
h3 {
    font-family: 'Times New Roman', Times, serif;
    font-weight: bold;
    font-size: 18px;
    color: #4400cc;
    text-align: center;
}

.visitor-counter {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin-top: 20px;
}