body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  color: #333;
  margin: 0;
  padding: 0;
}

header {
  background-color: #005f73;
  color: white;
  text-align: center;
  padding: 1.5rem 0;
}

.about {
  padding: 20px;
  margin: 20px auto;
  width: 80%;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.images {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}

.about-image {
  width: 80%;
  max-width: 500px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.about h2 {
  color: #005f73;
  margin-bottom: 15px;
}

.about p, .about ul {
  margin-bottom: 20px;
}

.about ul {
  list-style: none;
  padding: 0;
}

.about ul li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.about ul li::before {
  content: '✔️';
  position: absolute;
  left: 0;
  top: 0;
  color: #005f73;
}

footer {
  background-color: #005f73;
  color: white;
  text-align: center;
  padding: 10px 0;
  position: fixed;
  bottom: 0;
  width: 100%;
}
