body {
  font-family: 'Montserrat', sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.content {
  flex: 1;
}

.footer {
  background-color: #ffffff;
  color: #333;
  border-top: 1px solid #ddd;
  box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
  padding: 10px 0; /* Reduced padding */
}

.footer a {
  color: #333;
  text-decoration: none; /* Remove text decoration */
}

.footer a:hover {
  color: #228B22 !important; /* Forest green color with !important */
  text-decoration: none !important; /* Remove text decoration with !important */
}

.footer .section-title {
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 10px; /* Reduced margin */
}

.footer .logo {
  margin: 10px 0; /* Reduced margin */
  width: 150px; /* Smaller logo size */
}

.footer .contact-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 10px;
  text-align: justify; /* Justify text */
}

.footer .contact-info i {
  margin-right: 5px;
}

.footer .contact-info p {
  margin: 5px 0;
  display: flex;
  align-items: center;
}

.footer .contact-info p i {
  margin-right: 5px;
}

.footer .copyright {
  padding: 5px 0; /* Reduced padding */
}