body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #f4f4f4;
}

header {
  height: 60px;
  width: 100%;
  background-color: #003366;
  color: white;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
  /* padding: 1rem 2rem; */
  /* position: relative; */
  
}


nav {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* position:sticky;
  top: 0; */
}
.logo{
  height:55px;
  width: 65px;
  background-image: url(img/logo1.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  /* background-color: yellow; */
  margin-left: 20px;
  border-radius: 10%;

}
.links{
  height: 100%;
  width: 70%;
  /* background-color: yellow; */
  display: flex;
  align-items: center;
  font-size: 20px;
  justify-content: flex-end;
  margin-right: 25px;


}

nav ul {
  display: flex;
  list-style: none;
  /* margin-left: 80px; */
  padding: 0;
}

nav ul li {
  margin-left: 2rem;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: lightblue;
}


.menua{

  display: none;
}
a{
  text-decoration: none;
  color: #fff;
}

h1, h2 {
    margin: 0.5rem 0;
}

.contact-section {
    padding: 2rem;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin: 2rem;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.contact-content img {
    max-width: 100%;
    height: auto;
    margin: 1rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.contact-details {
    max-width: 600px;
    margin: 1rem;
}

.contact-details h2 {
    color: #006994;
}

.contact-details a {
    color: #006994;
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

.office {
    margin-bottom: 1rem;
}
.contact-content img{
  height: 350px;
  width: 320px;
}
footer {
    background: #003366;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
}

@media (max-width: 768px) {
   
  
  nav ul li a {
    flex-direction: column;
    display: none;
  }

  nav ul.active {
    display: flex;
  }
  .menua{
    display: flex;
  }
}
