/* Special CTA Button with Pop-out Icon */
.special-cta-btn {
  position: relative !important;
  padding-left: 90px !important; /* Larger room for the icon */
  padding-right: 45px !important;
  height: 72px !important;
  display: inline-flex !important;
  align-items: center !important;
  background-color: #8faec4 !important;
  color: #2c3e50 !important;
  border-radius: 60px !important;
  overflow: visible !important;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  text-transform: none !important;
  font-weight: 600 !important;
  font-size: 1.4rem !important;
  border: none !important;
  text-decoration: none !important;
}

.special-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(143, 174, 196, 0.4);
}

.special-cta-btn .custom-icon {
  position: absolute;
  left: -25px; /* Pull out further */
  top: 50%;
  transform: translateY(-50%) scale(2.2); /* Scale up proportionally */
  width: auto;
  height: 100% !important;
  filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.2));
  z-index: 10;
}
