html,
body {
  margin: 0;
  font-family: 'Barlow', sans-serif !important;
  height: 100%;
  padding: 0;
  scroll-behavior: smooth;
}

.site-footer {
  background: #111;
  color: #eee;
  padding: 2.5rem 2rem 1rem;
  font-size: 0.95rem;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* keep everything centered */
}

.footer-logo img {
  width: 100px;
  /* fixed width */
  height: auto;
  /* keep aspect ratio */
  margin-bottom: 1rem;
}

.partner-logo img {
  max-width: 140px;
  opacity: 0.8;
}

.footer-columns {
  flex: 2;
  display: flex;
  justify-content: flex-end;
  /* push content toward the right */
  gap: 1.5rem;
  /* reduce spacing between columns */
  min-width: 300px;
  text-align: left;
}

.footer-column {
  font-size: 0.85rem;
  /* slightly smaller font */
  line-height: 1.4;
}


.footer-column h4 {
  font-size: 0.95rem;
  /* smaller heading than before */
  margin-bottom: 0.5rem;
}

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

.footer-column li {
  margin-bottom: 0.5rem;
}

.footer-column a {
  color: #aaa;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-column a:hover {
  color: #ff6600;
  /* brand accent */
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.85rem;
  color: #888;
}

.footer-main-logo img {
  width: 200px;
  /* bigger company logo */
  max-width: 100%;
  height: auto;
  display: block;
  margin-bottom: 1rem;
}

.footer-sub-logos {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  /* allows wrapping on smaller screens */
}

.footer-sub-logos img {
  max-height: 60px;
  /* uniform height for balance */
  width: auto;
  /* keep aspect ratio */
  object-fit: contain;
}

.footer-logo-block {
  display: flex;
  flex-direction: column;
}

.iso-text {
  font-size: 0.75rem;
  /* small font */
  color: #aaa;
  /* subtle grey */
  margin-top: 0.5rem;
  text-align: center;
  letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
    align-items: center;
    /* ensures everything centers horizontally */
  }


  .footer-columns {
    flex-direction: column;
    align-items: center;
    /* center each column */
    text-align: center;
    gap: 2rem;
  }

  .footer-column {
    width: 100%;
    max-width: 280px;
    /* keeps content from stretching too wide */
  }

  .footer-main-logo img {
    width: 160px;
    /* slightly smaller on mobile */
  }

  .footer-sub-logos {
    flex-direction: column;
    /* stack vertically */
    gap: 0.8rem;
  }

  .footer-sub-logos img {
    max-height: 50px;
    /* shrink slightly for mobile */
  }
}
