 * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.container {
  max-width: 900px;
  margin: auto;
  padding: 40px 20px;
}

.heading {
  color: #006699; /* Blue color */
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 30px;
}

.paragraphs p {
  margin-bottom: 20px;
  line-height: 1.6;
  text-align: justify;
}

.sub-heading {
  margin-top: 40px;
  font-size: 1.5rem;
  color: #006699;
  text-transform: uppercase;
  border-bottom: 2px solid #006699;
  display: inline-block;
  margin-bottom: 20px;
}

.services {
  list-style-type: disc;
  padding-left: 20px;
}

.services li {
  margin-bottom: 10px;
  font-weight: 500;
}
.about-img {
  width: 100%;
  height: 50vh; /* Better to use viewport height */
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
}
