.footer {
  background-color: var(--color-primary);
  color: #ecf0f1;
  padding: 40px 0 0 0;
  font-size: var(--font-size-small);
  height: fit-content;
}
.footer a {
  color: #3498db;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer a:hover {
  color: #2980b9;
  text-decoration: underline;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2vw;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.footer-section {
  text-align: center;
}
.footer-section h3 {
  margin-top: 0;
  margin-bottom: 15px;
  font-size: var(--font-size-normal);
  font-weight: 600;
  color: #fff;
}
.footer-section p {
  margin: 10px 0;
  line-height: 1.6;
}
.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-section ul li {
  margin-bottom: 8px;
}
.footer-section ul li a {
  display: inline-block;
}

.footer-bottom {
  background-color: 222222;
  border-top: 1px solid #34495e;
  text-align: center;
  padding: 20px 0 20px 0;
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
}
.footer-bottom .footer-content {
  width: 80%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.footer-bottom p {
  margin: 0;
}
.footer-bottom ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 20px;
  justify-content: center;
}

/*# sourceMappingURL=footer.css.map */
