    /* General styles */
    body {
      margin: 0;
      font-family: 'Montserrat', sans-serif;
      background-color:rgb(24, 24, 24);
    }

    /* Navigation */
    .navbar {
      background-color: rgb(0, 0, 0);
      padding: 15px 30px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: relative;
      z-index: 1000;
    }
    .center {
      display: flex;
      gap: 20px;
      align-items: center;
    }
    .navbar a {
      text-decoration: none;
      color: #ffffff;
      margin: 0 10px;
      font-weight: 500;
    }
    .logo img {
      height: 60px;
      width: auto;
      background-color: black;
    }
    .navbar a button{
      background-color: transparent;
      color: #ffffff;
      border: none;
      padding: 12px 14px;
      font-weight: 600;
      cursor: pointer;
    }
    .navbar a button:hover {
      opacity: 0.9;
      text-decoration: underline;
    }

    /* Desktop search wrapper */
    .search-bar {
      position: relative;
      align-items: center;
      margin: 10px;
      border: none;
      border-radius: 10px;
    }
    .search-wrapper {
      position: relative;
    }
    .search-wrapper input {
      padding: 8px 10px;
      border-radius: 8px;
      border: 1px solid #ccc;
      min-width: 180px;
    }

    .results {
      margin-top: 6px;
      border-radius: 5px;
      max-width: 300px;
      background: #333;
      box-shadow: 0px 2px 4px rgba(0,0,0,0.3);
      position: absolute;
      left: 0;
      right: 0;
      z-index: 1100;
    }
    .result-item {
      padding: 8px;
      cursor: pointer;
      color: white;
      border-radius: 5px;
      font-weight: 500;
    }
    .result-item:hover {
      background: #ffffff;
      color: #000000;
    }

    /* Hamburger */
    .hamburger {
      display: none;
      font-size: 28px;
      color: white;
      background: none;
      border: none;
      cursor: pointer;
      padding: 6px;
      line-height: 1;
    }

    /* Mobile menu */
    .mobile-menu {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: #000;
      padding: 14px 18px;
      box-shadow: 0 6px 18px rgba(0,0,0,0.2);
      border-bottom-left-radius: 8px;
      border-bottom-right-radius: 8px;
    }
    .mobile-menu.open {
      display: block;
      animation: menuSlide 180ms ease;
    }
    @keyframes menuSlide {
      from { transform: translateY(-6px); opacity: 0; }
      to { transform: translateY(0); opacity: 1; }
    }

    .mobile-menu .center {
      display: flex;
      flex-direction: column;
      gap: 6px;
      margin-bottom: 10px;
    }
    .mobile-menu .center a button {
      width: 100%;
      text-align: left;
      padding: 12px;
      background: transparent;
      color: #fff;
      border-radius: 6px;
    }
    .mobile-menu .mobile-search .search-wrapper input {
      width: 100%;
      padding: 8px;
      border-radius: 8px;
      border: 1px solid #444;
      background: #111;
      color: #fff;
    }
    .mobile-menu .mobile-search .results {
      position: relative;
      background: #222;
    }

    /* Header */
    .header {
      text-align: center;
      background-color: #f4f4f4;
      margin: 0;
      height: 300px;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 2.5rem;
      color: #ffffff;
      font-weight: 700;
      background-image: url('/bilder/moppe4.jpg');
      background-size: cover;
      background-position: center;
      box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.5);
    }

    /* Info bar */
    .info-bar {
      background-color: #111;
      color: white;
      display: flex;
      justify-content: space-around;
      padding: 15px;
      font-size: 14px;
      border-color: white;
      border-style: solid;
      border-width: 0 0 1px 0;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    /* Contact Section */
    .contact-container {
      max-width: 800px;
      margin: 50px auto;
      background: #1c1c1c;
      padding: 30px;
      border-radius: 12px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }
    .contact-container h2 {
      text-align: center;
      margin-bottom: 20px;
      color: white;
    }
    form {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }
    input, textarea {
      padding: 12px;
      border: 1px solid #ffffff;
      border-radius: 8px;
      font-size: 16px;
     background: #333;
        color: white;
    }
    textarea {
      resize: vertical;
      min-height: 120px;

    }
    button[type="submit"] {
      background: black;
      color: white;
      border: none;
      padding: 14px;
      font-size: 16px;
      border-radius: 8px;
      cursor: pointer;
      transition: 0.5 ease;
      font-weight: 600;
    }
    button[type="submit"]:hover {
      background: whitesmoke;
        color: black;
    }

    /* Success popup */
    .popup {
      display: none;
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background: white;
      padding: 25px 40px;
      border-radius: 12px;
      box-shadow: 0px 5px 15px rgba(0,0,0,0.3);
      text-align: center;
      font-size: 18px;
      z-index: 999;
    }
    .popup.show {
      display: block;
      animation: fadeIn 0.3s ease;
    }
    @keyframes fadeIn {
      from { opacity: 0; transform: translate(-50%, -60%); }
      to { opacity: 1; transform: translate(-50%, -50%); }
    }

    @media (max-width: 900px) {
      .center { display: none; }
      .search-bar { display: none; }
      .hamburger { display: block; }
    }
    footer {
      text-align: center;
      padding: 1rem;
      background-color: black;
      color: #fff;
      position: relative;
    }
