footer {
  background-color: var(--footer-color);
  color: var(--white);
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid var(--main--content--background);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-section {
  flex: 1;
  min-width: 250px;
  margin: 10px;
  text-align: center;
}

.footer-section h3 {
  font-size: 1.3em;
  margin-bottom: 15px;
  color: var(--footer-section-h);
}

.footer-section p,
.footer-section a {
  color: var(--footer-section-h);
  margin: 5px 0;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-section a #address {
  color: var(--white);
  margin: 5px 0;
  text-decoration: underline;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: var(--secondary-color);
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
  }

  .footer-section {
    text-align: center;
    margin-bottom: 30px;
  }
}

