.custom-footer {
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, #e77494 0%, #e6275d 100%);
  color: white;
  gap: 60px;
}

.footer-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 26px 60px 26px 60px;
}

.footer-nav a {
  color: white;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.26;
  text-decoration: none;
}

.links,
.social-links,
.social-icons-links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.social-icons-links {
  display: none;
}

.links a,
.social-links a,
.social-icons-links a {
  gap: 10px;
  padding: 10px 14px;
}

.download-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: 24px;
  margin: auto;
  width: 980px;
}

.icons {
  display: flex;
  gap: 10px;
}

.download-header {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.5;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.1);
  padding: 26px 60px 26px 60px;
  font-size: 14px;
}

.footer-bottom a {
  color: white;
  text-decoration: none;
}

.footer-bottom-left,
.footer-bottom-right {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.26;
}

.footer-bottom-right {
  display: flex;
  gap: 26px;
}

.social-img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.store-img {
  width: 50px;
  height: 50px;
}

@media (max-width: 768px) {
  .footer-nav {
    flex-direction: column;
    gap: 24px;
  }

  .social-links {
    display: none;
  }

  .social-icons-links {
    display: flex;
  }

  .download-cta {
    width: 600px;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 24px;
    padding: 26px 40px;
  }

  .footer-bottom-right {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .custom-footer {
    gap: 32px;
  }

  .footer-nav {
    padding: 20px;
  }

  .footer-nav a {
    font-size: 12px;
  }

  .footer-bottom {
    padding: 20px;
  }

  .store-img {
    width: 40px;
    height: 40px;
  }

  .download-cta {
    width: 350px;
    gap: 24px;
    padding: 20px;
  }

  .download-header {
    font-size: 20px;
  }
}
