/* Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f5f7fa;
  color: #333;
}

.container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.site-header {
  background-color: #0a66c2;
  color: white;
  padding: 12px 0;
  position: relative;
}

.logo {
  font-size: 24px;
  font-weight: bold;
}

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

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* Search Bar */
.search-container {
  display: flex;
  align-items: center;
  background: white;
  border-radius: 5px;
  padding: 3px 10px;
  margin-left: 15px;
}

.search-container input {
  border: none;
  outline: none;
  padding: 6px 8px;
  font-size: 14px;
  width: 700px;
  transition: width 0.3s;
}

.search-container button {
  background: transparent;
  border: none;
  cursor: pointer;
}

.search-container button img {
  width: 18px;
  height: 18px;
}

/* Navbar */
.navbar {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.navbar a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: white;
  border-radius: 2px;
}

    @media (max-width: 768px) {
      .site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    padding: 0px 15px;
    position: relative; /* Required for absolute menu */
  }

  .logo {
    font-size: 20px;
    flex-shrink: 0;
    margin-right: 8px;
  }

  .search-container {
    position: relative;
    flex-grow: 1;
    margin: 0 10px;
    max-width: 100%;
    background: white;
    border-radius: 10px;
  }

  .search-container input {
    width: 100%;
    padding: 8px 38px 8px 12px;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    outline: none;
  }

  .search-container button {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
  }

  .search-container button img {
    width: 18px;
    height: 18px;
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    flex-shrink: 0;
  }

  .hamburger span {
    height: 3px;
    width: 22px;
    background: white;
    border-radius: 2px;
  }

  .navbar {
    display: none;
    flex-direction: column;
    background-color: #0a66c2;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    padding: 10px 20px;
    z-index: 99;
  }

  .navbar.show {
    display: flex;
  }
}