/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Site Header */
  .site-header {
    background-color: #0B1642; /* Navy background */
    color: #00DCA2;           /* Default text/icon color: green */
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;    /* Spacing around header */
    font-family: Arial, sans-serif;
  }
  
  /* Left side: brand */
  .header-left .brand-text {
    font-weight: bold;
    font-size: 1.4rem;
    color: #00DCA2;  /* Green brand text */
    letter-spacing: 0.5px;
  }
  
  /* Right side: icons */
  .header-right {
    display: flex;
    align-items: center;
    gap: 1rem; /* Space between icons */
  }
  
  /* Icons styling */
  .header-icon svg {
    display: block;    /* Remove inline gap */
    color: #00DCA2;    /* Fill color for the SVG path */
    width: 24px;
    height: 24px;
    transition: color 0.2s;
  }
  
  .header-icon:hover svg {
    color: #00b884;    /* Slight hover color change if desired */
  }
  
  .header-icon {
    text-decoration: none;
    cursor: pointer;
  }
  
  /* Optional: for screens narrower than 600px, adjust spacing or size */
  @media (max-width: 600px) {
    .site-header {
      padding: 0.5rem;
    }
    .header-left .brand-text {
      font-size: 1.2rem;
    }
    .header-right {
      gap: 0.75rem;
    }
    .header-icon svg {
      width: 20px;
      height: 20px;
    }
  }
  