body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    flex: 1;
}
.about-section {
  background-color: #fff;
  padding: 2rem;
  border-left: 5px solid #6C5CE7;
  margin-bottom: 2rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
}

.about-section img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  margin: 0 auto;
}

.logo {
  width: 80px;
  height: auto;
}

.about-section h2 {
  color: #6C5CE7;
  margin-bottom: 1rem;
  text-align: center;
}

.about-section p {
  margin-bottom: 1rem;
  font-size: 1rem;
  color: #2d3436;
  text-align: justify;
  line-height: 1.8;
}

.Address {
  color: blue;
  padding: 1rem;
  text-align: center;
  margin-bottom: 2rem;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode',
   'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: bold;
}

.footer {
    background-color: #6C5CE7;
  color: #2d3436;
  text-align: center;
  padding: 1rem;
  margin-top: 5rem;
}

.footer a {
  color: #fffeaf;
  text-decoration: none;
  margin: 0 5px;
}

.footer a:hover {
  text-decoration: underline;
}


/* Responsive adjustment */
@media (max-width: 600px) {
  .about-section {
    padding: 1rem;
  }

  .about-section p {
    font-size: 0.95rem;
  }
.footer {
    padding: 0.6rem;
    font-size: 0.9rem;
}
}
