.site-footer {
  background: var(--color-dark, #1a1a1a);
  color: #fff;
  padding: 60px 5px 30px;
  font-size: 0.95rem;
}

.footer__container {
  max-width: 1420px;
  margin: 0 auto;
}

.footer__top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  max-width: 80%;
  margin: auto;
}

.footer__branding {
  flex: 1 1 40%;
  min-width: 260px;
}

.custom-logo {
  height: 100px;
  width: auto;
  margin-bottom: 1rem;
}
.footer__desc {
  line-height: 1.6;
  color: #ddd;
  max-width: 500px;
  max-width: 350px;
  text-align: justify;
}
.footer__desc p {
  margin-bottom: 0 !important;
}
.footer__menu {
  flex: 1 1 40%;
  min-width: 260px;
  display: flex;
  justify-content: center;
  align-content: center;
  margin-top: auto;
}

.footer__nav {
  list-style: none;
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer__nav a {
  color: #fff;
  transition: color 0.3s ease;
}

.footer__nav a:hover {
  color: var(--color-accent, #d49d4c);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.342);
  padding-top: 1rem;
  text-align: center;
  color: #aaa;
  font-size: 0.85rem;
}
.footer__bottom p {
  margin: 10px 0;
}
.footer-logo {
  height: 20px;
  margin: 5px;
}

.footer__bottom p a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer__bottom p a:hover {
  color: var(--color-accent);
  text-decoration: underline; /* Podkreślenie copyright przy hover */
}
