* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #6466683e;
  color: #1a1a1a;
  line-height: 1.6;
  
}

header {
  background-color: #022a52;
  padding: 20px 0;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgb(6, 93, 117);
}

nav {
  display: flex;
  justify-content: center;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 40px;
  align-items: center;
  
}

nav ul li a {
  position: relative;
  color: #ffffff;
  text-decoration: none;
  font-size: 18px;
  padding-left: 20px;
  transition: color 0.3s;
   box-shadow: 0 2px 6px rgba(30, 175, 215, 0.403);
}

nav ul li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background-color: #8bb6e1;
  border-radius: 50%;
}

nav ul li a:hover {
  color: #a6eefc;
}

main {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
}

h2 {
  color: #00356b;
  margin-bottom: 20px;
  font-size: 24px;
}

h3 {
  color: #044687;
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: 20px;
}

p {
  margin-bottom: 20px;
  text-align: justify;
  font-size: 16px;
}

a {
  color: #6985cc;
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
  width: auto;
  align-items: center;
  margin: 0 ;
  border-radius: 8px;
}
.img{position: relative;
left: 5%;
margin-bottom: 10px;}




ul {
  padding-left: 20px;
  margin-top: 10px;
}

footer p {
  background-color: #00243d;
  color: white;
  text-align: center;
  padding: 20px 0;
  margin-top: 60px;
  font-size: 16px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgb(6, 93, 117);

  
  

}
