 
      .header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 12%;
        background-color: white;
        z-index: 1000;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
      }

      /* Add padding to the main content to prevent it from hiding under the fixed header */
      main.home {
        padding-top: 80px; /* Adjust this value based on your header height */
      }

      /* Ensure the header container has proper styling */
      .header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem;
      }
    