.custom-footer {
  background: #141439;
  color: #fff;
  padding: 40px 20px;
  font-family: "Rubik", sans-serif;
  position: relative;
  padding-top: 130px;
}

.footer-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 40px;
}

.footer-brand img {
  max-width: 120px;
  margin-bottom: 15px;
}

.footer-tagline {
  font-size: 14px;
  color: #ccc;
  max-width: 300px;
}

.footer-socials {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.footer-socials a {
  font-size: 24px;
  color: #00c2ff;
  transition: transform 0.3s;
}

.footer-socials a:hover {
  transform: scale(1.2);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
  text-align: left;
}

.footer-block {
  flex: 1;
  min-width: 200px;
}

.footer-block h4 {
  font-weight: bold;
  margin-bottom: 12px;
  font-size: 16px;
}

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

.footer-block a {
  text-decoration: none;
  color: #ccc;
  transition: color 0.3s;
  font-size: 0.9rem;
}

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

.footer-disclaimer {
  font-size: 12px;
  color: #aaa;
  text-align: center;
  line-height: 1.6;
}

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

  .footer-block {
    width: 100%;
    max-width: 300px;
  }

  .footer-block h4 {
    text-align: center;
  }

  .footer-top {
    margin-bottom: 30px;
  }

  .footer-brand img {
    max-width: 100px;
  }

  .footer-socials {
    justify-content: center;
    flex-wrap: wrap;
  }
}
