*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
}

.logo {
    width: 90px;
    height: auto;
    margin-top: 7px;
}

.logo img{
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: 0cm 0cm;
    
}

nav .logo{
    display: none;
}

nav ul{
    display: flex;
    width: 330px;
    align-items: flex-start;
    justify-content: space-between;
}

nav ul li {
    position: relative; /* Added */
  }

nav ul li a{
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-style: normal;
    color: #212526;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    padding: 10px 18px;
    border-radius: 5px;
    border-style: solid;
    border-width: 2px;
    border-color: white;
}

nav ul li a img{
    width: 20px;
    transform: rotate(90deg);
    margin-left: 10px;
    display: none;
}

nav ul li a:hover {
    border-color: #212526;
    }
    
nav ul li a.active {
    background-color: #212526;
    border-color: #212526;
    border-style: solid;
    border-width: 2px;
    color:white
}

#dropdown {
    display: none;
    position: absolute; /* Added */
    top: 100%; /* Added */
    left: 0;
    background-color: white; /* Added */
    width: max-content;
    border-radius: 5px;
    z-index: 20;
  }
  
  nav ul li:hover #dropdown {
    display: flex;
    flex-direction: column;
  }

  nav ul li ul li a:hover {
    border-color: #212526;
    text-decoration: underline;
    text-decoration-color: #000000;
    text-decoration-thickness: 2px;
    border-color: #ffffff;
  }

  nav ul li ul li{
    padding: 5px;
  }

.hamburger{
    display: none;
    height: fit-content;
    cursor: pointer;
    padding: 3px 8px;
    border-radius: 5px;
    transition: 0.2s;
}

.hamburger:hover{
    background: #f6f4ff;
}

.hamburger div{
    width: 30px;
    height: 3px;
    margin: 6px 0;
    background-color: #212526;
    border-radius: 2px;
}

body{
    background-color: #efefef;
    position: relative;
    height: 100%;
}

header{
    width: 100%;
    height: 70px;
    background: #fefefe;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 30px;
    padding-left: 10px;
    border-radius: 0 0 10px 10px;
    margin: 0 auto;
    z-index: 30;
}

header img{
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: 0cm 0cm;
}

main{
    margin: 60px;
    font-family: "Inter", sans-serif;
}

h2{
    margin-top: 30px;
}

h3{
    margin-top: 30px;
}

h4{
    margin-top: 30px;
}

p{
    margin-top: 10px;
}

footer{
    display: flex;
    height: auto;
    width: 100vw;
    background-color: #efefef;
    place-content: center;
}

footer .footer-content{
    display: flex;
    justify-content: space-evenly;
    width: 30%;
    padding-top: 30px;
    padding-bottom: 20px;
}

footer .footer-content a{
    color:#000000;
    margin: 0 10px;
    font-family: "Nunito", sans-serif;
    font-weight: 100;
    font-size: 12px;
}