
#footer .footer-bg {
    position: relative;
    padding: 64px 0 0 0;
    min-height: 420px;
    overflow: hidden;
  }

#footer .footer-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

#footer .footer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left center;
}

  #footer .footer-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 32px 32px 32px;
  }
  #footer .footer-left {
    flex: 1 1 45%;
  }
  #footer .footer-title {
    color: #fff;
    margin-bottom: 32px;
  }
  #footer .footer-buttons {
    display: flex;
    gap: 18px;
  }
  #footer .footer-right {
    flex: 1 1 55%;
    display: flex;
    justify-content: flex-end;
  }
  #footer .footer-links {
    display: flex;
    gap: 56px;
  }
  #footer .footer-col {
    min-width: 140px;
  }
  #footer .footer-col-title {
    color: #fff;
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 18px;
    font-family: 'Titillium Web', sans-serif;
  }
  #footer .footer-link {
    display: block;
    color: #e6e6e6;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
    transition: color 0.2s;
  }
  #footer .footer-link:hover {
    color: #e6c98e;
  }
  #footer .footer-address {
    color: #e6e6e6;
    font-size: 1rem;
    line-height: 1.5;
  }
  #footer .footer-bottom {
    position: relative;
    z-index: 2;
    border-top: 1px solid #222;
    margin-top: 36px;
    padding: 18px 32px;
    text-align: center;
    line-height: 1.5;
  }
  #footer .footer-copyright {
    color: #b0b0b0;
    font-size: 1rem;
    font-family: 'Titillium Web', sans-serif;
  }
  #footer .footer-copyright a {
    color: #e6c98e;
    text-decoration: none;
    transition: color 0.2s;
  }
  #footer .footer-copyright a:hover {
    color: #fadc8a;
  }
  @media (max-width: 900px) {
    #footer .footer-content {
      flex-direction: column;
      gap: 40px;
      padding: 40px 16px 16px 16px;
    }
    #footer .footer-right {
      justify-content: flex-start;
    }
    #footer .footer-links {
      gap: 32px;
    }
  }
  @media (max-width: 600px) {
    #footer .footer-content {
      padding: 32px 12px 12px 12px;
    }
    #footer .footer-title {
      font-size: 2rem;
    }
    #footer .footer-links {
      flex-direction: column;
      gap: 18px;
    }
    #footer .footer-col {
      min-width: 0;
    }
  } 
  @media (max-width: 390px) {
    #footer .footer-buttons {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
    #footer .btn-primary,
    #footer .btn-secondary {
        width: auto;
    }
  }