:root {
  --primary: #000000;
  --accent: #2E86C1;
  --bg: #ffffff;
  --text: #333;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

header {
  background: #fff;
  border-bottom: 1px solid #ddd;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.logo {
  height: 60px;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  position: relative;
}

/* DESKTOP MENU */
nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav a {
  text-decoration: none;
  color: var(--primary);
  font-weight: bold;
}

nav a:hover {
  color: var(--accent);
}


img {
  max-width: 100%;
  height: auto;
}

/* HAMBURGER */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* MOBILE */
@media (max-width: 768px) {

  .menu-toggle {
    display: block;
  }

  /* FORCE HIDE */
  #nav-menu {
    display: none !important;
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 70px;
    right: 0;
    width: 220px;
    padding: 15px;
    border: 1px solid #ddd;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 999;
  }

  /* SHOW WHEN ACTIVE */
  #nav-menu.active {
    display: flex !important;
  }

  #nav-menu li {
    margin: 10px 0;
  }
}
✅ 3. JavaScript (a