
 .site-footer {
    background: #0f172a;
    color: #cbd5e1;
    padding: 60px 0 20px;
    margin-top: 60px;
    font-size: 15px;
  }

  .site-footer a {
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.25s ease;
  }

  .site-footer a:hover {
    color: #ffffff;
    text-decoration: none;
  }

  .footer-logo {
    max-width: 160px;
    margin-bottom: 18px;
  }
  .footer-title {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: 0.3px;
  }
  .footer-text {
    color: #94a3b8;
    line-height: 1.8;
    margin-bottom: 18px;
  }

  .footer-links,
  .footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .footer-links li,
  .footer-contact li {
    margin-bottom: 12px;
  }

  .footer-contact i {
    width: 20px;
    margin-right: 10px;
    color: #60a5fa;
  }
  .footer-social {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 18px;
  }

  .footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
    transition: all 0.25s ease;
  }

  .footer-social a:hover {
    background: #2563eb;
    transform: translateY(-2px);
    color: #ffffff;
  }

  .footer-divider {
    border-top: 1px solid rgba(255,255,255,0.08);
    margin: 35px 0 20px;
  }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
  }
  .footer-bottom p {
    margin: 0;
    color: #94a3b8;
    font-size: 14px;
  }

  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
  }

  .footer-legal a {
    font-size: 14px;
    color: #94a3b8;
  }

  .footer-legal a:hover {
    color: #ffffff;
  }


  @media (max-width: 767px) {
    .site-footer {
      padding: 45px 0 20px;
      text-align: center;
    }

    .footer-social {
      justify-content: center;
    }

    .footer-bottom {
      flex-direction: column;
      text-align: center;
    }
  }




