*{
  margin: 0;
  padding: 0;
}


body {
  font-family: Arial, sans-serif;
  background-color: #f2f7f6;
  color: #333;
  margin: 0;
  padding: 0;
}

.logo{
  font-size: 50px;
  font-weight: bold;
  color: white;
  font-style: oblique;
  text-decoration: none;

}
.logo img{
  height: 70px;
  width: auto;
  margin-left: 10px;
  border-radius: 50px;
  padding-top: 20px;
}

ul{
  list-style: none;
  background:white;
  border-radius: 30px;
}ul li{
  display: inline-block;
  position: relative;
}
ul li a{
  display: block;
  padding: 20px 25px;
  color: black;
  text-decoration:none ;
  text-align: center;
  font-size: 20px;
}
ul li  ul.dropdown li{
  display: block;
}
ul li ul.dropdown {
  width: 100%;
  background: white;
  position: absolute;
  z-index: 999;
  display: none;
}
ul li a:hover{
  background:  #023e3a;
  }
  ul li:hover ul.dropdown{
      display: block;
  }
  header{ 
   z-index: 1000;
    top: 0;
    position: sticky;
    background: #026969;
    padding: 20px 9%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

section {
  padding-top: 35px;
  margin: 12px;
  
  max-width: 105s0px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

h2 {
  color: #004d40;
  font-size: 35px;
  padding-bottom: 5px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.card {
  background: #e0f2f1;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 3px 5px rgba(0,0,0,0.1);
}

.card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
}
.fa{
  margin-right: 6px;
  vertical-align: middle;
  font-size: 30px;
  color: black;
}
footer {
  text-align: center;
  padding: 15px;
  background: #004d40;
  color: white;
  margin-top: 40px;
}