.footer {
  background-color: #2f4454;
  color: #ffffff;
  padding: 40px 20px;
}

.footer-container {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}

.footer-column ul {
  list-style: none;   /* ❗ removes bullets */
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #ffffff;     /* ❗ removes blue link color */
  text-decoration: none;
}

.footer-column ul li a:hover {
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  pointer-events: none;
  z-index: 999;
}

#about {
  max-width: 1100px;
  margin: auto;
  padding: 40px 20px;
  font-family: Arial, sans-serif;
  color: #000;
  line-height: 1.7;
  text-align: center;
}

#about h1 {
  font-size: 38px;
  font-weight: bold;
  margin-bottom: 25px;
}

#about h2 {
  font-size: 24px;
  font-weight: bold;
  margin-top: 35px;
  margin-bottom: 15px;
}

#about p {
  font-size: 18px;
  margin-bottom: 15px;
}

#about ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

#about ul li {
  font-size: 18px;
  line-height: 2;
}

#about .highlight {
  font-size: 26px;
  font-weight: bold;
  margin-top: 30px;
}
