/* Social Icons */
.social-icons {
  margin-bottom: 1rem;
}

.social-icons a {
  display: inline-block;
  margin: 0 10px;
  color: inherit;
}

.social-icons a div {
  width: 24px;
  height: 24px;
  -webkit-mask-image: var(--icon-url);
  mask-image: var(--icon-url);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  background-color: currentColor;
}

/* Contact Icons */
.contact-icons {
  margin-top: 20px!important;
}

.contact-icons a {
  display: inline-block;
  margin: 0 10px;
  color: inherit;
}

.contact-icons a div {
  width: 30px;
  height: 30px;
  -webkit-mask-image: var(--icon-url);
  mask-image: var(--icon-url);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  background-color: currentColor;
}


/* Footer */
.footer-content {
  position: fixed;
  bottom: 20px;
  left: 0;
  width: 100%;
  text-align: center;
}

.footer-content a {
  color: inherit;
  text-decoration: none;
}

.privacy-text {
  font-size: 14px;
  opacity: 0.8;
} 