* {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    font-weight: bold;
    box-sizing: border-box; /* Include padding and border in element's total width and height */
  }
  
  body {
    height: 100vh;
    background-color: white;
    background-size: cover;
    background-position: center;
    margin: 0; /* Ensure no default body margin */
  }
  
  /* Header styles */
  .web {
    width: 100%;
    background-color: rgb(238, 238, 238);    
    background-position: left; /* Ensuring background position */
  }
  
  nav {
    width: 100%;
    margin: auto;
    display: flex;
    position: relative;
    top: 0;
    z-index: 1;
    border-bottom: 1px solid #f7f7f7;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    background-color: rgb(238, 238, 238);    
  }
  
  .menu {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    padding-left: 50px;
    background-color: rgb(238, 238, 238);    
  }
  
  .logo {
    cursor: pointer;
    width: 400px; /* Adjusted width */
    height: 120px; /* Adjusted height */
    display: block; /* Ensure it's treated as a block-level element */
    background-color: rgb(238, 238, 238);    
  }
  
  nav ul {
    list-style: none;
    display: flex;
    margin-left: auto;
    margin-right: 5%;
    font-size: 1em;
    background-color: rgb(238, 238, 238);    
  }
  
  nav ul li {
    position: relative; /* Ensure dropdown positioning */
    margin: 0 30px;
    background-color: rgb(238, 238, 238);    
    z-index: 1; /* Ensure main navigation items are behind submenu */
    padding: 45px 15px; /* Adjust padding for main navigation items */
    display: block;
    height: 120px;
  }
  
  nav ul li a {
    color: rgb(55, 55, 59);
    text-decoration: none;
    display: block; /* Make the entire area clickable */
  }
  
  nav ul li a:hover {
    text-decoration: underline;
    color: rgb(2, 0, 143);
  }
  
  /* Submenu styles */
  nav ul li .submenu {
    display: none;
    position: absolute;
    background-color: white;
    z-index: 2; /* Ensure submenu appears above main navigation items */
    width: 200px; /* Example width; adjust based on your content */
    margin-top: 50px; /* Adjust as needed for spacing */
    padding: 0; /* Reset padding for submenu */
    left: 0; /* Align submenu to the left */
  }
  
  nav ul li:hover .submenu {
    display: block;
  }
  
  nav ul li .submenu li {
    text-align: left; /* Ensure submenu items are aligned to the left */
    background-color: rgb(238, 238, 238);    
    margin: 0;
  }
  
  nav ul li .submenu a {
    text-decoration: none;
    margin: 0;
    background-color: rgb(238, 238, 238);    
  }
  
  nav ul li .submenu a:hover {
    text-decoration: underline;
    margin: 0;
  }
  
  /* Toggle Button */
  .toggle_btn {
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: rgb(238, 238, 238);    
  }
  
  .toggle_btn:hover {
    background-color: #e0e0e0; /* Background color on hover */
  }
  
  @media (max-width: 768px) {
    .toggle_btn {
        display: flex; /* Show toggle button on smaller screens */
    }
  
    nav ul {
        display: none; /* Hide the menu initially */
        flex-direction: column; /* Stack the menu items vertically */
        width: 100%; /* Full width */
        background-color: rgb(238, 238, 238);    
        position: absolute;
        top: 100px; /* Position below the navbar */
        left: 0;
        padding: 0;
    }
  
    nav ul.show {
        display: flex; /* Show the menu when the toggle button is clicked */
    }
  
    nav ul li {
        width: 100%;
        text-align: center;
        margin: 0; /* Remove margin for list items */
        padding-top: 50px; /* Add padding for better spacing */
        
    }
  
    nav ul li a {
        width: 100%;
        display: block;
        padding: 10px 0;
    }
  }





















/* ABOUT US PICTURE */

section {
    display: flex;
    position: relative;
    background-color: white;
}

#about-section h2 {
    font-size: 4em;
    margin-bottom: 40px;
    background-image: url('/pictures/norbjorn1.jpg'); 
    width: 101.6%;
    line-height: 100%;
    text-align: left center;
    background-size: cover;
    background-position: left center;
    color: white; 
    display: inline-block;
    padding: 150px;
    padding-left: 80px;
    box-sizing: border-box; 
    background-color: white;
    z-index: 1;
}

/* Label and text styles within the about section */
.label {
    font-size: 2em;
    font-weight: bold;
    margin: 0px 80px;
    color: midnightblue;
}

.about-text {
    font-size: 1.1em;
    margin: 0px 80px;
    color: black;
    text-align: left;
}

.hns {
    font-size: 1.1em;
    line-height: 1.2;
    margin: 0px 80px;
    color: black;
    text-align: left;
}

.spaced {
    margin-top: 20px;
    color: black;
    margin-bottom: 50px;
    text-align: left;
}






    /* Footer Section */
    #below {
        width: 101.6%;
        padding-top: 30px;
        padding-bottom: 1px;
        background-color: rgb(226, 225, 225);    
      }
      
    /* Footer Logo */

    .logo1 {
        cursor: pointer;
        width: 300px;
        height: 100px;
        display: block; /* Ensure it's treated as a block-level element */
        background-color: rgb(226, 225, 225);    
      }



      /* FOOTER LIST */

      .footer {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        max-width: 120px;
        background-color: rgb(226, 225, 225);    
      }
      
    
    .footer-content {
        display: flex;
        justify-content: space-between;
        width: 100%;
        padding-left: 100%;
        background-color: rgb(226, 225, 225);    
      }
    
    .footer-section {
      margin-left: 10px;
      margin-right: 50px;
      background-color: rgb(226, 225, 225);    
      cursor: pointer;
        color: black;
    }
    
    .footer-section h3 {
        margin-bottom: 40px;
        white-space: nowrap;
        background-color: rgb(226, 225, 225);    
        color: black;
    }
    
    .footer-section p {
      margin-bottom: 5px;
      white-space: nowrap;
      color: black;
      background-color: rgb(226, 225, 225);    
    }
    .footer-section ul {
        list-style: none; /* Remove default list style (bullets) */
        padding: 0; /* Remove default padding */
    }
    
    .footer-section ul li {
        margin-bottom: 10px; /* Add space below each list item */
    }
    
    .footer-section ul li a {
        text-decoration: none;
        color: black;
        display: block;
        padding: 5px 0; /* Adjust padding as needed */
    }
    
    .footer-section a:hover {
        text-decoration: underline;
        background-color: rgb(226, 225, 225);    
      }
    


    /* Media query for smaller screens */
    @media (max-width: 768px) {
        .footer-content {
            flex-direction: column; /* Stack items vertically */
            align-items: flex-start; /* Align items to the start */
        }
    
        .footer-section {
            margin-right: 0; /* Remove margin to stack items */
            margin-bottom: 20px; /* Add space between items */
            width: 100%; /* Full width */
        }
    
        .footer-section h3 {
            margin-bottom: 10px; /* Adjust margin */
        }
    }
      
      .left-img {
        width: 100%;
        height: 100px;
        margin-top: 50px;
        margin-left: 50px;
        cursor: pointer;
      }
      
      
      
      /* Apply background color to all anchor elements */
      .footer-section a {
        text-decoration: none;
        background-color: rgb(226, 225, 225);    
        color: black;
        padding: 5px 0px; 
        max-width: 100%;
      }
      
      
      .footer-section a:hover {
        text-decoration: underline;
        background-color: rgb(226, 225, 225);    
      }
      
      #Copyright {
        background-color: rgb(226, 225, 225);    
        padding: 20px 0; /* Add padding for spacing */
        padding-left: 500px; /* Adjust left padding for larger screens */
        text-align: center; /* Center align text */
    }
    
    /* Media query for responsive alignment */
    @media (max-width: 768px) {
        .footer {
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
    
        .footer .footer-content {
            padding-left: 0;
            padding-top: 20px; /* Adjust as needed */
          }
    
        .footer-section {
            margin-right: 0;
        }
    
        .footer-section h3 {
            margin-bottom: 20px; /* Adjust as needed */
        }
    
        #Copyright {
            text-align: left; /* Align left on smaller screens */
            padding: 20px; /* Add padding for spacing */
            padding-left: 20px; /* Adjust left padding for smaller screens */
        }
    
        .fab.fa-facebook.fa-2x {
            margin-left: auto; /* Align to the right on smaller screens */
            margin-right: auto; /* Align to the left on smaller screens */
            padding-left: 0; /* Remove left padding on smaller screens */
            display: block; /* Display as block element */
            margin-top: 10px; /* Adjust spacing between icon and text */
            text-align: center; /* Center align icon */
        }
    }
    
    @media (min-width: 769px) {
        /* Larger screens */
        .fab.fa-facebook.fa-2x {
            margin-left: 250px; /* Adjust spacing between icon and text */
            padding-left: 200px; /* Add padding to separate from the line */
        }
    }









