.site-footer {
    background-color: #073c74;
    color: #ffffff;
    padding: 60px 20px 30px;
    /* font-family: "Segoe UI", sans-serif; */
  }
  
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
  }
  
  .footer-col {
    flex: 1 1 180px;
    max-width: 220px;
    min-width: 160px;
  }
  
  .footer-logo {
    max-width: 140px;
  }
  
  .footer-text {
    font-size: 14px;
    margin-top: 10px;
    line-height: 1.6;
    /* font-family: "SansRegular"; */
    font-weight: 400;
    font-size: 20px;
    line-height: 140%;
    width: 75%;
  }
  
  .app-buttons img {
    width: 140px;
    margin-right: 10px;
    margin-top: 10px;
  }
  
  .footer-heading {
    margin-bottom: 12px;
    /* font-family: "SansMedium"; */
    font-weight: 500;
    font-size: 18px;
    line-height: 20px;
  }
  
  .footer-links {
    list-style: none;
    padding: 0;
    font-size: 14px;
    line-height: 1.8;
  }
  
  .footer-links li {
    margin-bottom: 6px;
  }
  
  .footer-links a {
    color: #ffffff;
    text-decoration: none;
    /* font-family: "SansRegular"; */
    font-weight: 400;
    font-size: 16px;
    line-height: 35px;
  }
  
  .footer-links a:hover {
    text-decoration: underline;
  }
  
  .footer-divider {
    border: none;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 10px 0 20px;
  }
  
  .footer-certificate-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
  }
  
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  
  .social-icons {
    display: flex;
    gap: 10px;
  }
  
  .footer-icons-image-wrap {
    width: 32px;
    height: 32px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .social-icons a img {
    width: 16px;
    height: 16px;
    margin: 6px;
    transition: 0.3s ease;
  }
  
  .social-icons a:hover img {
    opacity: 0.8;
  }
  
  .footer-links-inline {
    /* font-family: "SansRegular"; */
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    margin-top: 10px;
  }
  
  .footer-links-inline a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 8px;
  }
  
  .footer-links-inline a:hover {
    text-decoration: underline;
  }
  
  @media (max-width: 1024px) {
    .footer-top {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .footer-col {
      width: 100%;
      max-width: 100%;
    }
  
    .footer-text {
      font-size: 16px;
      width: 80%;
      margin-left: auto;
      margin-right: auto;
    }
  
    .app-buttons {
      justify-content: center;
      flex-wrap: wrap;
    }
  
    .footer-certificate-wrap {
      justify-content: center;
      margin: 20px 0;
      flex-wrap: wrap;
    }
  
    .footer-bottom {
      flex-direction: column;
      gap: 12px;
      text-align: center;
    }
  
    .social-icons {
      justify-content: center;
      gap: 12px;
      flex-wrap: wrap;
    }
  }
  