
 * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.container {
  max-width: 900px;
  margin: 50px auto;
  padding: 30px;
  background-color: #ffffff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
 
}

h2 {
  color: #006699;
  margin-top: 30px;
  align-items: center;

 
}

 


ul li {
  margin-bottom: 10px;
  list-style: none;

}


/* Button styling */
.about-btn {
  padding: 12px 24px;
  font-size: 16px;
  background-color: #007BFF; /* Customize this */
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.3s ease;
}

.about-btn:hover {
  background-color: #0056b3;
}


  

.about {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px 10px 20px; /* Top, Right, Bottom, Left */
  text-align: center;
}

.about .heading {
  text-transform: uppercase;
  font-size: 32px;
  margin-bottom: 10px; /* Reduced spacing */
}

.about .paragraphs {
  max-width: 800px;
  text-align: justify;
  margin-bottom: 10px; /* Reduced spacing below the text */
}

.about .paragraphs p {
  margin-bottom: 10px;
  line-height: 1.6;
}
