.site-footer {
  background: #f7f5f5;
  font-family: var(--source-sans-font);
  color: #666;
  font-size: 14px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: justify; 
}

.footer-logo img {
  max-width: 160px;
  height: 8rem;
  padding: 0.5rem;
  border: 0;
}

.footer-col h4 {
  font-size: 15px;
  color: #000;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.footer-col hr {
  width: 50px;
  border: none;
  border-top: 2px solid #ccc;
  margin: 4px 0 8px;
}

.footer-contact p {
  margin: 4px 0;
  line-height: 1.4;
  max-width: 260px;
}

.footer-col a {
  color: #666;
  text-decoration: none;
}

.footer-col a:hover {
  color: #39A9C7;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav li {
  margin-bottom: 8px;
}

.footer-news input {
  width: 200px;
  height: 32px;
  padding: 1px 13px;
  border: 1px solid #999;
  border-radius: 20px;
  outline: none;
  text-align: left;
  margin-bottom: 6px;
}

.footer-news input:focus {
  border-color: #39A9C7;
}

.footer-search-socials {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
}

.footer-socials {
  display: flex;
  gap: 6px;
  align-items: center;
}

.footer-news .icon {
  color: #008eb4;
  font-size: 1.4rem;
  transition: color 0.3s;
}

.footer-news .icon:hover {
  color: #f2b705;
}

.footer-bottom {
  background: #39A9C7;
  color: #fff;
  padding: 8px 0; 
  display: flex;
  justify-content: center;
}

.footer-bottom-inner {
  width: 100%;
  max-width: 900px;
  padding: 0 20px;
  display: flex;
  justify-content: center; 
  align-items: center;     
  gap: 25px;
  flex-wrap: wrap;
  text-align: center;
}

.footer-bottom ul {
  display: flex;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-bottom li:not(:last-child)::after {
  content: "|";
  margin-left: 10px;
  color: #fff;
}

.footer-bottom a {
  color: #fff;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
  color: #fff;
}

.footer-bottom span {
  white-space: nowrap;
}


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

  .footer-col {
    align-items: center;
    text-align: center; 
  }

  .footer-search-socials {
    align-items: center;
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: center;
    max-width: 100%;
    text-align: center;
  }

  .footer-news input {
    text-align: center;
  }
}
