.ae-header {
background-color: #111;
display: flex;
justify-content: space-between;
align-items: center;
padding: 15px 25px;
z-index: 999;
font-family: 'Roboto', sans-serif;
position: relative;
}

.ae-nav-logo {
  display: flex;
  align-items: center;
}

.ae-logo {
  max-height: 60px;
  width: auto;
}

.ae-nav-toggle {
  display: none;
  font-size: 2rem;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
}

.ae-nav-links {
  display: flex;
  gap: 25px;
}

.ae-nav-link {
  color: white;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.ae-nav-link:hover,
.ae-nav-link:focus {
  color: #ffb84d;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .ae-nav-toggle {
    display: block;
  }

  .ae-nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #111;
    width: 100%;
    padding: 1rem 2rem;
  }

  .ae-nav-links.active {
    display: flex;
  }

  .ae-nav-link {
    padding: 0.75rem 0;
    font-size: 1.1rem;
    border-top: 1px solid #333;
  }
}