* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: sans-serif;
  line-height: 1.6;
  background: #f4f4f4;
  max-width: 900px;
  margin: 0 auto;
  padding: 10px;
}

/* Logo */
.logo img {
  width: 100%;
  height: auto;
  display: block;
}

/* Navbar */
.nav ul {
  list-style: none;
  background: #4CAF50;
  text-align: center;
}

.nav ul li {
  display: inline-block;
  position: relative;
}

.nav ul li a {
  display: block;
  padding: 10px 20px;
  color: white;
  text-decoration: none;
}

.nav ul li ul {
  display: none;
  position: absolute;
  background: #4CAF50;
  min-width: 160px;
  z-index: 999;
}

.nav ul li:hover ul {
  display: block;
}

.nav ul li ul li {
  display: block;
}

/* Marquee */
.font-run .marquee {
  overflow: hidden;
  white-space: nowrap;
  background: #f2f2f2;
  padding: 10px;
}

.font-run .marquee p {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 15s linear infinite;
}

@keyframes marquee {
  0%   { transform: translateX(0%); }
  100% { transform: translateX(-100%); }
}

/* Banner */
.banner-info {
  background: white;
  padding: 20px;
  border-radius: 10px;
}

.banner-info h1 {
  margin-bottom: 20px;
  text-align: center;
  color: #333;
}

.banner-info img {
  width: 100%;
  height: auto;
  border-radius: 5px;
  margin-bottom: 20px;
}

.banner-info p {
  margin-bottom: 10px;
  color: #333;
  font-size: 14px;
}

/* Footer */
footer {
  background: #333;
  color: white;
  padding: 20px 10px;
  margin-top: 30px;
}

.footer-top-con {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-top-item {
  flex: 1 1 250px;
}

.footer-top-item h6 {
  margin-bottom: 10px;
  font-size: 18px;
  color: #ffd700;
}

.footer-top-item p {
  font-size: 14px;
}

.footer-top-item iframe {
  width: 100%;
  height: auto;
  border: none;
}

/* Responsive navbar */
@media (max-width: 768px) {
  .nav ul li {
    display: block;
    text-align: left;
  }

  .nav ul li ul {
    position: static;
  }
}