/* Social Icons Section
----------------------------------------- */
.social-icons {
  margin-bottom: 1rem;
}

/* Social Icon Links */
.social-icons a {
  display: inline-block;
  margin: 0 10px;
  color: inherit;
}

/* SVG Icon Containers */
.social-icons a div {
  width: 24px;
  height: 24px;
  /* SVG masking for color control */
  -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;
  /* Use currentColor to match parent's color property */
  background-color: currentColor;
}

/* Contact Icons Section
----------------------------------------------- */

/* Contact Icon Links */
.contact-icons a {
  display: inline-block;
  margin: 0 10px;
  color: inherit;
}

/* SVG Icon Containers */
.contact-icons a div {
  width: 30px;
  height: 30px;
  /* SVG masking for color control */
  -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;
  /* Use currentColor to match parent's color property */
  background-color: currentColor;
}


/* Footer Section
----------------------------------------- */
.footer-content {
  position: fixed;
  bottom: 20px;
  left: 0;
  width: 100%;
  text-align: center;
}

/* Footer Links */
.footer-content a {
  color: inherit;
  text-decoration: none;
}

/* Privacy Policy Text */
.privacy-text {
  font-size: 14px;
  opacity: 0.8;
} 