footer {
  background: #0f1a2e;
  padding: 4rem 2rem 2rem;
  font-family: 'Montserrat', sans-serif;
  color: white;
}

.footer-top {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand-name {
  font-weight: 900;
  font-size: 1.4rem;
  color: #1a6dff;
  margin-bottom: 0.75rem;
}

/* Logo styling in footer */
.footer-logo {
  display: inline-block;
  margin-bottom: 1.25rem; /* Space between logo and description */
  text-decoration: none;
}

.footer-logo img {
  height: 35px; /* Adjust this to make it look right in the footer */
  width: auto;
  display: block;
  /* Optional: if your logo is a bit dark, you can use a filter to make it pop */
  /* filter: brightness(0) invert(1); <--- This makes a black logo white */
}

/* Ensure the brand name text style is removed if you're not using it anymore, 
   or keep it for fallback */
.footer-brand-name {
  display: none; 
}

/* Mobile tweak */
@media (max-width: 600px) {
  .footer-logo img {
    height: 30px;
  }
}

.footer-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
  max-width: 280px;
}

.footer-col-title {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 0;
}

.footer-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
  font-weight: 600;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}