html {
  scroll-behavior: smooth;
}
footer {
  width: 100%;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: system-ui, sans-serif;
  padding: 2.5rem 1.5rem;
  display: flex;
  justify-content: center;
  border-top: 2px solid var(--color-accent);
}

.footer-container {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}

.footer-section {
  flex: 1 1 250px;
  min-width: 250px;
}

.footer-title {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--color-accent);
  font-weight: 600;
}

.footer-text {
  line-height: 1.5;
  opacity: 0.9;
}

.footer-links a,
.footer-buttons a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
  color: var(--color-text);
  text-decoration: none;
  transition: 0.2s ease;
}

.footer-links a:hover,
.footer-buttons a:hover {
  color: var(--color-accent);
}

.footer-buttons a {
  padding: 0.6rem 1rem;
  background: var(--color-bg-hover);
  border-radius: 6px;
  /*border: 1px solid var(--color-accent);*/
  width: fit-content;
}

.footer-buttons a:hover {
  background: var(--color-accent);
  color: #000;
}

.footer-buttons svg,
.footer-links svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.footer-bottom {
  width: 100%;
  text-align: center;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-bg-hover);
  font-size: 0.9rem;
  opacity: 0.7;
}