/* Reset some default styles for better consistency */
body, h1, h2, h3, p, ul, li {
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
  }
  
  header {
    background-color: #3366cc;
    color: #ffffff;
    padding: 20px;
  }
  
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  nav h1 {
    font-size: 24px;
  }
  
  nav ul {
    list-style: none;
    display: flex;
  }
  
  nav li {
    margin-left: 20px;
  }
  
  nav a {
    text-decoration: none;
    color: #ffffff;
  }
  
  .about {
    padding: 40px;
    text-align: center;
  } 
  
  .about-content {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .about h2 {
    font-size: 36px;
    margin-bottom: 20px;
  }
  
  .about p {
    font-size: 18px;
    margin-bottom: 20px;
  }
  /* Same styles as before... */

.manager {
    padding: 40px;
    text-align: center;
    background-color: #848484;
  }
  
  .manager img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin-bottom: 20px;
  }
  
  .manager h3 {
    font-size: 30px;
    margin-bottom: 10px;
  }
   
  .manager p {
    font-size: 18px;
    margin-left: 60px;
    margin-right: 60px;
    margin-bottom: 10px;
  }
  

  footer {
    background-color: #333;
    color: #ffffff;
    padding: 20px;
    text-align: center;
  }
  

.services {
  margin-top: 50px;
  margin-left: 150px;
  margin-right: 150px;
  margin-bottom: 50px;
  text-align: center;
}

.service {
  margin-bottom: 40px;
}

.service img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin-bottom: 20px;
}

.services h2 {
  font-size: 30px;
  margin-bottom: 30px;
}

.service h3 {
  font-size: 24px;
  margin-top: 200px;
  margin-bottom: 200px;
}

.services p {
  margin-top: 5px;
  margin-bottom: 40px;
}

.service p {
  font-size: 18px;
}


.contact {
  padding: 40px;
  text-align: center;
  background-color: #f9f9f9;
}

.contact-content {
  max-width: 800px;
  margin: 0 auto;
}

.contact h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.contact p {
  font-size: 18px;
  margin-bottom: 20px;
}

form {
  text-align: left;
  margin-top: 20px;
}

label {
  display: block;
  margin-bottom: 5px;
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

button[type="submit"] {
  background-color: #ff6600;
  color: #ffffff;
  padding: 15px 30px;
  font-size: 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
  background-color: #ff4400;
}


