.navbar {
  background: var(--primary);
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  border-bottom: 1px solid #23274b;
}

.navbar-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 64px;
  position: relative;
}

.navbar-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.navbar-logo {
  width: 36px;
  height: 36px;
  margin-right: 12px;
  border-radius: 8px;
  overflow: hidden;
  background: #fffbe6;
  box-shadow: 0 2px 4px rgba(50,58,122,0.10);
  border: 1px solid #eaf0ff13;
}

.navbar-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.navbar-brand-title {
  color: var(--text);
  font-weight: bold;
  font-size: 1.1em;
  letter-spacing: 1.2px;
}

.navbar-menu {
  display: flex;
  align-items: center;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.navbar-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 1em;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.15s;
}

.navbar-links a:hover,
.navbar-links a.active {
  background: #23274b;
  color: var(--accent);
}

.navbar-donate {
  margin-left: 16px;
  background: var(--accent);
  color: #fff;
  padding: 10px 20px;
  border-radius: 20px;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95em;
  transition: all 0.15s;
}

.navbar-donate:hover {
  background: #314bb9;
  box-shadow: 0 4px 14px rgba(70,130,250,0.3);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 1001;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--text);
  margin: 2px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

.main-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}