 .visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ✅ Global Styles */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  overflow-x: hidden;
}

/* ✅ Contact Description Text */
.form-heading p.contact-description {
  font-size: 1.1rem;      /* Default for desktop */
  text-align: center;
  color: #333;
  line-height: 1.6;
  margin-bottom: 20px;
  padding: 0 20px;
}

@media (max-width: 768px) {
  .form-heading p.contact-description {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .form-heading p.contact-description {
    font-size: 0.85rem;
    padding: 0 10px;
  }
}

/* ✅ Form Heading */
.form-heading {
  margin-bottom: 10px;
}
.form-heading p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 1.1rem;
  text-align: center;
  color: #333;
}
.fancy-text i {
  font-size: 36px;
  color: #ff3e3e;
  animation: pulseIcon 1.5s infinite ease-in-out;
}
@keyframes pulseIcon {
  0% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.15); opacity: 1; }
  100% { transform: scale(1); opacity: 0.9; }
}

/* ✅ SVG Illustration */
.svg-illustration {
  text-align: center;
  margin-top: 20px;
}
.svg-illustration img {
  max-width: 100%;
  width: 280px;
  height: auto;
  animation: pulse 2s infinite;
}
@media (max-width: 576px) {
  .svg-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    padding: 10px 0;
  }

  .svg-illustration img {
    width: 180px;
    height: auto;
  }
}
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.03); }
  100% { transform: scale(1); }
}
.image-credit {
  display: block;
  font-size: 0.75rem;
  color: #888;
  margin-top: 6px;
}
.image-credit a {
  color: #888;
  text-decoration: none;
}
.image-credit a:hover {
  text-decoration: underline;
  color: #ff3e3e;
}

/* ✅ Ads Section */

/* TOP Ad */
.ads-top {
  width: 100%;
  text-align: center;
  background: #fff;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 999;
}

/* LEFT Ad */
.ads-left {
  position: fixed;
  top: 100px;
  left: 0;
  width: 160px;
  z-index: 999;
}

/* RIGHT Ad */
.ads-right {
  position: fixed;
  top: 100px;
  right: 0;
  width: 160px;
  z-index: 999;
}

/* BOTTOM Ad */
.ads-bottom {
  width: 100%;
  text-align: center;
  background: #fff;
  padding: 10px 0;
  border-top: 1px solid #eee;
  margin-bottom: 0;
}

/* Google Ad Cleanup */
.adsbygoogle {
  margin: 0 !important;
  padding: 0 !important;
  display: block !important;
  height: auto !important;
}

/* ✅ Hide side ads on smaller screens */
@media (max-width: 768px) {
  .ads-left,
  .ads-right {
    display: none;
  }
}