
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding: 0;
  margin: 0;
  background: #f2f2f2;
  color: #333;
}
header {
  background: green;
  color: white;
  text-align: center;
  padding: 40px 20px;
}
section {
  max-width: 800px;
  margin: 30px auto;
  padding: 0 20px;
}
img {
  max-width: 100%;
  height: auto;
}
.taxi-image {
  text-align: center;
}
.map-container {
  width: 100%;
  height: 350px;
  margin-top: 20px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(0,0,0,0.2);
}

/* Hiệu ứng */
.fade-in {
  font-size: 20px; 
  animation: fadeIn 2s ease-in;
}
.fade-in-up {
  animation: fadeInUp 2s ease-out;
}
.slide-in {
  animation: slideIn 2s ease-out;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slideIn {
  from { transform: translateX(-100%); }
  to { transform: translateX(0); }
}

.blink {
  text-align: center;
  font-size: 20px;
  color: red;
  animation: blinkAnim 1s infinite;
  font-weight: bold;
}
@keyframes blinkAnim {
  0%, 50%, 100% { opacity: 1; }
  25%, 75% { opacity: 0; }
}

.price-table {
  margin: 20px auto;
  max-width: 600px;
  text-align: center;
}
.price-table h2 {
  color: #fff000;
  margin-bottom: 10px;
}
.price-table table {
  width: 100%;
  border-collapse: collapse;
}
.price-table th, .price-table td {
  border: 1px solid #ccc;
  padding: 10px;
}
.price-table th {
  background-color: #00a000;
  color: white;
}
.price-table td {
  background-color: white;
  color: #d80000;
  font-weight: bold;
}

.neon-blink {
  color: #f00f0f;
  font-weight: bold;
  font-size: 60px; 
  text-shadow:
    0 0 5px #0ff,
    0 0 10px #0ff,
    0 0 20px #0ff,
    0 0 40px #0ff;
  animation: neonPulse 2s ease-in-out infinite;
}

@keyframes neonPulse {
  0%, 100% {
    text-shadow:
      0 0 5px #0ff,
      0 0 10px #0ff,
      0 0 20px #0ff,
      0 0 40px #0ff;
  }
  50% {
    text-shadow:
      0 0 10px #0ff,
      0 0 20px #0ff,
      0 0 30px #0ff,
      0 0 60px #0ff;
  }
}
