.footer {
  background-color: var(--secondary-color);
  color: var(--white);
  padding-top: 60px;
  margin-top: auto;
}

.footerContainer {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.brandCol p {
  color: #bdc3c7;
  margin: 20px 0;
  max-width: 300px;
}

.brandCol .logo img {
  height: 50px;
  filter: brightness(0) invert(1);
}

.socials {
  display: flex;
  gap: 12px;
}

.socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  font-weight: bold;
  font-size: 14px;
}

.socials a:hover {
  background: var(--primary-color);
}

.linksCol h3, .contactCol h3 {
  font-size: 18px;
  margin-bottom: 20px;
  color: var(--white);
}

.linksCol ul, .contactCol ul {
  list-style: none;
}

.linksCol li, .contactCol li {
  margin-bottom: 12px;
  color: #bdc3c7;
}

.linksCol a:hover {
  color: var(--primary-color);
}

.copyright {
  text-align: center;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: #bdc3c7;
  font-size: 14px;
}

@media (max-width: 768px) {
  .footerContainer {
    grid-template-columns: 1fr;
  }
}
