.site-footer {
  width: 100%;
  height: 360px;
  background: linear-gradient(
    90deg,
    #f1f8f2 0%,
    #fff 18.89%,
    #fff 82.22%,
    #f1f8f2 100%
  );
  position: relative;
  z-index: 1;
}

.footer-inner {
  width: 85%;
  margin: 0 auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
}

.footer-ellipse {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -100px;
  width: 85%;
  max-width: 1440px;
  height: auto;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.footer-logo img {
  width: 202.677px;
  height: 74.015px;
  aspect-ratio: 202.68/74.02;
}

.footer-address {
  width: 643px;
  margin-top: 42px;
  color: #505050;
  font-family: "Yekan Bakh";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.footer-postal {
  margin-top: 8px;
}

.footer-postal-label,
.footer-postal-code {
  color: #505050;
  font-family: "Yekan Bakh";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.footer-phone {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #505050;
  font-family: "Yekan Bakh";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.footer-phone svg {
  width: 16px;
  height: 16px;
}

.footer-contacts {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
.footer-contacts .footer-phone { margin-top: 0; }

.footer-rights {
  margin-top: 50px;
  /* margin-bottom: 22px; */
  padding-bottom: 22px;
  color: var(--Dark, #0a142f);
  opacity: 0.5;
  font-family: "Yekan Bakh";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (max-width: 768px) {
  .site-footer {
    height: auto;
    padding-top: 100px;
    padding-bottom: 24px;
  }
  .footer-ellipse {
    top: -80px;
    width: 95%;
  }
  .footer-address {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .footer-logo img {
    width: 160px;
    height: auto;
  }
  .footer-address {
    font-size: 13px;
  }
  .footer-rights {
    margin-top: 32px;
    font-size: 13px;
  }
  .footer-contacts { flex-direction: column; gap: 12px; }
  .footer-contacts .footer-phone { display: block; }
}

@media (min-width: 481px) {
  .footer-phone + .footer-phone { margin-inline-start: 0; }
}
