.site-footer {
  background: var(--color-footer-bg, #fbfbfb);
  border-top: 1px solid #e0e0e0;
  padding: 28px 16px 0;
  color: #444;
}

/* Default footer links (Facebook, etc.) */
.site-footer__main a {
  color: var(--color-footer-text, #444);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.site-footer__main a:hover {
  color: var(--color-orange, #f78b00);
}

.site-footer__inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 24px 32px;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
}

.site-footer__logo {
  display: block;
  max-width: 140px;
  height: auto;
  flex-shrink: 0;
}

.site-footer__main {
  flex: 1 1 200px;
  min-width: 0;
}

.site-footer__main p {
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 1.45;
}

.site-footer__main p:last-child {
  margin-bottom: 0;
}

.site-footer__fb {
  font-size: 15px;
}

.site-footer__small {
  font-size: 13px;
  color: #666;
}

/* Right column: same idea as header snippet — grey text, blue links, orange button */
.site-footer__aside {
  flex: 0 1 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 16px 20px;
}

.site-footer__help-panel {
  text-align: right;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.4;
  color: #444;
}

.site-footer__help-label {
  display: block;
  margin-bottom: 4px;
  font-weight: 600;
  color: #444;
}

.site-footer__help-lines {
  text-align: right;
}

.site-footer__help-row {
  margin-bottom: 2px;
}

.site-footer__help-row strong {
  font-weight: 700;
  margin-right: 4px;
}

/* Logo-style icons (like the ones you posted) */
.site-footer__logo-ico {
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 6px;
  vertical-align: -3px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.site-footer__logo-ico--wa {
  background-image: url("https://upload.wikimedia.org/wikipedia/commons/6/6b/WhatsApp.svg");
}

.site-footer__logo-ico--fb {
  background-image: url("https://upload.wikimedia.org/wikipedia/commons/b/b9/2023_Facebook_icon.svg");
}

.site-footer__logo-ico--mail {
  background-image: url("https://upload.wikimedia.org/wikipedia/commons/7/7e/Gmail_icon_%282020%29.svg");
}

.site-footer__help-sep {
  margin: 0 4px;
  color: #777;
}

.site-footer__help-panel .site-footer__help-row a,
.site-footer__help-email {
  color: #0056b3;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.site-footer__help-panel .site-footer__help-row a:hover,
.site-footer__help-email:hover {
  color: #004494;
}

.site-footer__help-email {
  display: inline-block;
  margin-top: 2px;
  word-break: break-all;
}

.site-footer__book {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  background: var(--color-orange, #f78b00);
  color: #fff !important;
  text-decoration: none !important;
  font-weight: 700;
  font-size: 14px;
  font-family: Arial, Helvetica, sans-serif;
  white-space: nowrap;
  border: none;
  flex-shrink: 0;
}

.site-footer__book:hover {
  background: #e07d00;
  color: #fff !important;
}

@media (max-width: 720px) {
  .site-footer__inner {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 14px;
  }

  .site-footer__aside {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
  }

  .site-footer__help-panel,
  .site-footer__help-lines {
    text-align: left;
  }

  .site-footer__book {
    width: 100%;
    max-width: 280px;
  }
}

.site-footer__copyright {
  max-width: 1140px;
  margin: 0 auto;
  padding: 16px;
  border-top: 1px solid #e0e0e0;
  text-align: center;
}

.site-footer__copyright p {
  margin: 0;
  font-size: 13px;
  color: #555;
}
