* {
  margin: 0;
  padding: 0;
}

/* Top marquee strip */
.top-strip {
  background-color: #9900cc;
  color: white;
  font-weight: bold;
  font-size: 16px;
  padding: 0px 0;
}

/* Header with Flexbox */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0px;
  flex-wrap: wrap;
  background-color: #fff;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.header-left img {
  height: 80px;
  margin-left: 15px;
}

.header-left h1 {
  color: #9900cc;
  font-size: 2rem;
  font-weight: bold;
  font-family: 'Times New Roman', Times, serif;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

i {
  color: rgb(77, 4, 80);
  font-size: 2em;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

/* .header-right a {
  height: 28px;
} */

/* Main nav bar */
.main-nav {
  background-color: #000;
}

.nav-menu {
  display: flex;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.nav-menu>li {
  position: relative;
}

.nav-menu li a {
  font-size: 1em;
  display: block;
  padding: 12px 18px;
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-family: fantasy;

}

.nav-menu li a:hover {
  background-color: #a506b0;
}

.apply-button {
  background-color: #9900cc;
  padding: 10px 16px;
}

/* Dropdown styles */
.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu {
  display: none;
  position: absolute;
  background-color: #111;
  min-width: 180px;
  z-index: 1000;
  border-radius: 4px;
  top: 100%;
  left: 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.dropdown-menu li {
  width: 100%;
  list-style-type: none;
}

.dropdown-menu li a {
  padding: 10px 16px;
  color: white;
}

.dropdown-menu li a:hover {
  background-color: #a506b0;
}

/* Footer with Flexbox */
.site-footer {
  background-color: #40005c;
  color: white;
  padding: 30px;
  display: flex;
  justify-content: space-around;
  gap: 30px;
  flex-wrap: wrap;
}

/* .footer-column {
  flex: 1 1 250px;
  min-width: 220px;
} */
.footer-left {
  text-align: left;
  flex: 1 1 250px;
  min-width: 220px;
}

.footer-sect {
  justify-content: left;
  text-align: center;
  flex: 1 1 250px;
  min-width: 220px;
}

ul {
  list-style-type: none;
}

.footer-right {
  justify-content: right;
  text-align: right;
  flex: 1 1 250px;
  min-width: 220px;
}

.site-footer h3 {
  color: #ff99ff;
  margin-bottom: 10px;
}

.site-footer a {
  color: white;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .nav-menu {
    flex-direction: column;
    align-items: center;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    background-color: #000;
  }

  .dropdown:hover .dropdown-menu {
    display: block;
  }

  .header-right {
    justify-content: flex-start;
  }

  .site-footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}