/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    background: #fafafa;
    color: #333;
  }
  
  /* Header */
  .site-header {
    width: 100%;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  }
  
  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between; /* ensures hamburger on right */
    max-width: 1200px;
    padding: 12px 20px;
    margin: 0 auto;
  }
  
  /* Logo */
  .logo img {
    height: 42px;
  }
  
  /* Search wrapper */
  .search-wrapper2 {
    flex-grow: 1; /* make search take available space */
    display: flex;
    justify-content: center;
    margin: 0 20px;
  }
  
  .search-form2 {
    display: flex;
    width: 100%;
    max-width: 600px;
  }
  
  .search-form2 input {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-right: none;
    border-radius: 4px 0 0 4px;
    font-size: 15px;
  }
  
  .search-form2 button {
    padding: 8px 12px;
    border: 1px solid #ccc;
    background: #0072ce;
    color: white;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
  }
  
  .search-form2 button:hover {
    background: #005bb5;
  }
  
  /* Hamburger */
  .hamburger {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 6px;
  }
  .hamburger span {
    width: 24px;
    height: 3px;
    background: #333;
  }
  
  /* Nav menu (toggled) */
  .nav-menu {
    display: none;
    flex-direction: column;
    border-top: 1px solid #eee;
  }
  .nav-menu.open {
    display: flex;
  }
  .nav-menu a {
    padding: 12px 20px;
    text-decoration: none;
    color: #333;
    font-size: 16px;
  }
  .nav-menu a:hover {
    background: #f4f4f4;
  }
  
  /* Responsive layout */
  @media (max-width: 1023px) {
    /* On tablets and smaller: put search below header-inner */
    .header-inner {
      flex-wrap: wrap; /* allow wrapping */
    }
    .search-wrapper2 {
      order: 100; /* move search below */
      width: 100%;
      margin: 8px 0;
      justify-content: center;
    }
  }
  