footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
  background-color: #fff;
  border-top: 1px solid #ccc;
  z-index: 100;
}

.safe-footer {
  background-color: #5d0063; 
  color: #fff; 
  padding: 20px 0;
  box-sizing: border-box;
}

.safe-footer .footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap; 
  max-width: 700px; 
  margin: 0 auto;
  padding: 0 20px;
}

.safe-footer .footer-logo {
  height: clamp(70px, 10vw, 80px); 
  width: auto;
  flex-shrink: 0;
}
.safe-footer .footer-secure {
  height: clamp(80px, 10vw, 90px); 
  width: auto;
  flex-shrink: 0;
}

.safe-footer .footer-features {
  list-style: none;
  display: flex;
  flex-direction: column; 
  gap: 8px; 
  margin: 0;
  padding: 0;
}
.safe-footer .footer-features li {
  position: relative;
  padding-left: 1.5em;
  font-size: clamp(14px, 4vw, 18px); 
  line-height: 1.2;
}
.safe-footer .footer-features li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #4CAF50;
}

.safe-footer .footer-links {
  max-width: 1200px;
  margin: 15px auto 0;
  padding: 0 10px;
  text-align: center;
}
.safe-footer .footer-links a {
  display: inline-block;
  margin: 0 12px;
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
}
.safe-footer .footer-links a:hover {
  text-decoration: underline;
}

.footer-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: 2px;
  flex-wrap: nowrap;
}
.footer-btn {
  text-decoration: none;
  color: #006600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  padding: 8px;
  border-radius: 4px;
  transition: all 0.3s;
  white-space: nowrap;
}
.footer-btn:hover {
  color: #fff;
  background-color: #006600;
}
.footer-btn i {
  font-size: 20px;
  margin-right: 8px;
}

.footer2-space {
  height: 2px;
}
.footer3-space {
  height: 50px;
}

@media (max-width: 720px) {
  footer {
    width: 100%;
  }
  .footer-btn {
    font-size: 12px;
  }
  .footer-btn i {
    font-size: 12px;
  }
}