class CustomCta extends HTMLElement { connectedCallback() { this.attachShadow({ mode: 'open' }); this.shadowRoot.innerHTML = `

Ready to elevate your digital presence?

Let's discuss how we can help you achieve your business goals with a custom digital solution tailored to your needs.

Get in Touch
`; } } customElements.define('custom-cta', CustomCta);