body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
  }
  nav {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
  }
  
  nav a {
    color: black;
    text-decoration: none;
    padding: 10px 20px;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
  }
  
  nav a:hover {
    color: #facc15; 
    transform: translateY(-2px);
  }
  
  h1 {
    text-align: center;
    margin-bottom: 15px;
  }
  
  p {
    text-align: center;
    color: #666;
    margin-bottom: 20px;
  }
  
  img {
    display: block;
    margin: 0 auto;
    width: 300px; 
    margin-bottom: 20px;
  }
  
  label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
  }
  
  select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 3px;
    box-sizing: border-box;
  }
  footer {
    text-align: center;
    padding: 20px;
    background-color: #21252b;
    color: #fff;
  }

@media only screen and (max-width: 768px) {
  nav {
    flex-direction: column; 
    align-items: center;
  }

  nav a {
    padding: 5px 10px;
  }
}
img {
  width: 100%; 
}

input[type="text"],
input[type="email"],
input[type="date"],
select,
textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 3px;
  box-sizing: border-box; 
  margin-bottom: 10px; 
}
input[type="text"],
input[type="email"],
input[type="date"],
select,
textarea {
  width: 100%; 
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 3px;
  box-sizing: border-box; 
  margin-bottom: 10px; 
}
input[type="submit"] {
  background-color: #facc15; 
  color: #fff; 
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

input[type="submit"]:hover {
  background-color: #ff9900; 
}
@media screen and (max-width: 768px) {

  header {
    padding: 10px;
  }

  nav {
    flex-direction: column; 
    align-items: center;
  }

  .about-us p {
    font-size: 16px; 
  }

}
