/* TOPBAR */
.topbar {
  background: #1f7a7a;
  color: white;
  padding: 8px 20px;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}

/* HEADER */
.main-header {
  position: sticky;
  top: 0;
  background: white;
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.main-header a,
.main-header a:visited,
.main-header a:hover,
.main-header a:active {
  text-decoration: none !important;
  color: inherit;
}

.logo {
  font-size: 22px;
  font-weight: bold;
  color: #1f7a7a;
}

.main-header nav a {
  margin-left: 20px;
  color: black;
  font-weight: 500;
}

/* MOBILE */
@media (max-width: 900px) {
  .main-header {
    flex-direction: column;
    gap: 10px;
  }

  .topbar {
    flex-direction: column;
    text-align: center;
    gap: 5px;
  }
}