    
    @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600;700&display=swap');
    
    /* ===== Global Reset & Basic Styling ===== */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    body {
      font-family: Arial, sans-serif;
      background-color: #2c5b6e; /* Dark teal background */
      color: #ffffff;
    }

    /* ===== Page Wrapper ===== */
    .wrapper {
      width: 90%;
      max-width: 1300px;
      margin: 0 auto;
      padding: 1rem;
    }

    .wrapper img {
        max-width: 45%;
        height: auto;
        border-radius: 0.25rem;
    }

    /* ===== Header & Branding ===== */
    header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      background-color: #2c5b6e; 
      padding: 0.75rem 1rem;
      border-radius: 0.5rem;
    }
    header div {
      display: block;
      max-width: 100%;
    }
    .nav-links {
      display: flex;
      gap: 1rem;
    }
    #aktiv {
      filter: opacity(0.6);
    }
    #inaktiv {
      filter: blur(3px);
    }
    .nav-links a {
      text-decoration: none;
      color: #d4edf3;
      font-weight: bold;
      font-size: 22px;
      transition: color 0.3s;
    }
    .nav-links a:hover {
      color: #d34404;
    }

    /* ===== Main Container ===== */
    main {
      background-color: #61afbe; /* Lighter teal for main content box */
      margin-top: 1rem;
      border-radius: 0.75rem;
      padding: 2rem;
      min-height: 60vh;
    }
    main h1 {
      text-align: center;
      font-size: 2.5rem;
      color: #002b36; 
      margin-bottom: 2rem;
      letter-spacing: 1px;
    }

    /* ===== Section / Product Blocks ===== */
    .section-container {
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
      justify-content: center;

    }
    .meny-text {
      font-size: 45px;
      letter-spacing: 1px;
      font-family: "Poppins", Arial;
    }

    /* --- INFO BOX CLOSED --- */
    .info-box-closed {
      filter: blur(6px) grayscale(0.8);

      text-decoration: none;
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
  
      background-color: #9ed8e3;
      color: #002b36;
      border-radius: 0.5rem;
      max-width: 580px;
      padding: 1rem;
      text-align: left;
      box-shadow: 2px 2px 8px rgba(0,0,0,0.2);
    }
    .info-box-closed img {
      align-self: center;
      max-width: 21%;
      height: auto;
      border-radius: 0.25rem;
    }
    .info-box h2 {
      text-decoration: none;
      color: #002b36;
      font-size: 1.7rem;
      font-weight: bold;
      letter-spacing: 1px;

      transition: 0.3s;
    }
    .info-box-closed p {
      margin-top: 0.3rem;
      font-size: 1rem;
      line-height: 1.4;
    }

    /* --- INFO BOX --- */
    .info-box {
      text-decoration: none;
      display: flex;
      justify-content: space-between;
      align-items: flex-start;

      background-color: #9ed8e3;
      color: #002b36;
      border-radius: 0.5rem;
      max-width: 580px;
      padding: 1rem;
      text-align: left;
      box-shadow: 2px 2px 8px rgba(0,0,0,0.2);

      transition: 0.2s;
    }
    .info-box:hover {
        box-shadow: 10px 12px 3px rgba(0,0,0,0.2);
    }
    .info-text {
      flex: 1;
      margin-right: 1rem;
    }
    .info-box h2 {
      text-decoration: none;
      color: #002b36;
      font-size: 1.7rem;
      font-weight: bold;
      letter-spacing: 1px;

      transition: 0.3s;
    }
    .info-box:hover h2{
      color: #d34404;
      letter-spacing: 8px;
    }
    .info-box img {
      align-self: center;
      max-width: 21%;
      height: auto;
      border-radius: 0.25rem;
    }
    .info-box p {
      margin-top: 0.3rem;
      font-size: 1rem;
      line-height: 1.4;
    }

    /* ===== Footer (optional) ===== */
    footer {
      text-align: center;
      margin-top: 1rem;
      color: #cccccc;
      font-size: 0.9rem;
    }