/* Custom footer styles for Desmos Networks */
.footer-desmos {
  background: linear-gradient(170deg, #2d3140 0%, #19272c 100%);
  color: #fff;
  padding: 60px 0 30px 0;
}
.footer-desmos .footer-logo {
  max-width: 290px;
  margin-bottom: 20px;
}
.footer-desmos .footer-desc {
  font-size: 1.15rem;
  color: #e0e6ed;
  margin-bottom: 30px;
  max-width: 400px;
}
.footer-desmos .footer-social {
  display: flex;
  gap: 18px;
  margin-bottom: 30px;
}
.footer-desmos .footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1.3rem;
  transition: background 0.2s;
}
.footer-desmos .footer-social a:hover {
  background: #0f4d5a;
  color: #fff;
}
.footer-desmos .footer-contact {
  margin-top: 30px;
}
.footer-desmos .footer-contact-title {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #fff;
}
.footer-desmos .footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-desmos .footer-contact-list li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  color: #e0e6ed;
  font-size: 1rem;
}
.footer-desmos .footer-contact-list svg {
  margin-right: 10px;
  color: #0f4d5a;
  min-width: 20px;
}
.footer-desmos .footer-bottom {
  border-top: 1px solid #33404a;
  margin-top: 40px;
  padding-top: 18px;
  text-align: center;
  color: #b0b8c1;
  font-size: 0.95rem;
}
@media (max-width: 900px) {
  .footer-desmos .footer-main {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
  .footer-desmos .footer-desc {
    max-width: 100%;
  }
}
@media (max-width: 600px) {
  .no-mobile {
  display: none;
}
  .footer-desmos {
    padding: 40px 20px 20px 20px;
  }
  .footer-desmos .footer-main {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .footer-desmos .footer-logo {
    max-width: 170px;
  }
  .footer-desmos .footer-bottom {
    font-size: 0.85rem;
    padding-top: 12px;
  }
}


