.footer-header {
  position: static; /* или relative */

  background-color: black; /* как в шапке */
  height: 150px;
}
.footer-wrapper {
  background-color: black;
  padding-top: 40px; /* создаст отступ и зальёт его цветом */
}

.footer-disclaimer {
  color: #888;
  font-size: 14px;
  text-align: left;
  line-height: 1.6;
  max-width: 900px;
}

.footer-bottom-note {
  margin-top: -55px;
  text-align: right;
  font-size: 13px;
  color: #777;
  line-height: 1.6;
}

.footer-bottom-note a.privacy-link {
  display: inline-block;
  color: #777;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom-note a.privacy-link:hover {
  color: #fff;
}

.footer-bottom-note p,
.footer-bottom-note a {
  margin: 0;
}

@media (max-width: 768px) {
  .footer-header {
    padding: 20px 10px;
    font-size: 14px;
  }

  .footer-header .company-name {
    font-size: 18px;
  }

  .footer-header .company-info {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .footer-header .info-block {
    text-align: center;
  }

  .footer-header .phone {
    font-size: 16px;
  }

  .footer-header img {
    width: 80px;
    height: auto;
    margin-bottom: 10px;
  }

  .footer-disclaimer p,
  .footer-bottom-note p {
    font-size: 12px;
    text-align: center;
    line-height: 1.4;
  }

  .footer-bottom-note {
    margin-top: 10px;
  }

  .footer-wrapper {
    padding: 10px;
  }

  .header-inner {
    flex-direction: column;
    align-items: center;
  }

  .footer-header .company-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .footer-header .header-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .footer-header .info-block {
    width: 100%;
    max-width: 300px;
    margin-bottom: 10px;
  }

  .footer-bottom-note {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-top: 10px;
  }

  .footer-wrapper,
  .footer-header,
  .header-inner,
  .footer-header .company-info,
  .footer-header .info-block,
  .footer-disclaimer,
  .footer-bottom-note {
    background-color: #0a0a0a !important;
  }
}