Footer & Compliance Disclaimer
Footer Structure
Layout: 3–4 columns (depending on template)
Column 1: Contact Info
ReZilta Service Solutions, LLC
Address: Davenport, FL
Phone: (239) XXX-XXXX
Email: info@rezilta.com
Column 2: Navigation
Home
About ReZilta
Services
Additional Services
Resources
Contact
Column 3: Legal / Compliance Links
Privacy Policy
Terms of Service
Disclaimers & Notices
Column 4 (Optional): Social Links
LinkedIn
Instagram
Facebook
Design Rules:
Theme 3 – Dark Authority
Headings white, body text light gray
Keep icons minimal and consistent with site
Footer Compliance & Disclaimer Text
Recommended Wording:
ReZilta Service Solutions provides administrative and organizational support for individuals and small businesses. We are not a law firm and do not provide legal advice. Immigration, business, real estate, and digital services are provided within the bounds of applicable regulations.
Real estate services are offered by licensed Realtor® Abbe Beaucicot through La Rosa Realty, LLC. ReZilta Service Solutions is not a real estate brokerage and does not engage in brokerage activities.
Consultations do not create a legal, agency, or fiduciary relationship unless otherwise stated in writing.
All services are delivered with professionalism, confidentiality, and ethical standards.
FOOTER CODE
<footer class="rez-footer-section">
<div class="rez-footer-container">
<div class="rez-footer-branding">
<h2 class="rez-footer-logo">ReZilta Service Solutions</h2>
<p class="rez-footer-tagline">Structured guidance and reliable support for individuals and small businesses.</p>
</div>
<div class="rez-footer-update">
<h4 class="rez-footer-subheading">Stay Updated</h4>
<p class="rez-update-text">Receive updates, insights, and important service announcements.</p>
<form action="mailto:abbe@reziltasolutions.com?subject=Newsletter%20Signup" method="post" enctype="text/plain" class="rez-update-form">
<input type="email" name="Email" placeholder="Your email address" required class="rez-update-input">
<button type="submit" class="rez-update-btn">Sign Up</button>
</form>
</div>
<nav class="rez-footer-main-nav">
<a href="/">Home</a> ·
<a href="/about">About</a> ·
<a href="/services">Services</a> ·
<a href="/contact">Contact</a> ·
<a href="/blog">Blog</a>
</nav>
<div class="rez-footer-contact-info">
<h4 class="rez-footer-subheading">Contact</h4>
<p>P: <a href="tel:4076757540">407-675-7540</a></p>
<p>E: <a href="mailto:abbe@reziltasolutions.com">abbe@reziltasolutions.com</a></p>
</div>
<div class="rez-footer-social">
<h4 class="rez-footer-subheading">Connect:</h4>
<div class="rez-social-links">
<a href="#">Facebook</a> ·
<a href="#">Instagram</a> ·
<a href="#">LinkedIn</a>
</div>
</div>
<div class="rez-footer-copyright">
<p>© 2024–2026 ReZilta Service Solutions, LLC</p>
<div class="rez-legal-links">
<a href="/privacy-policy">Privacy Policy</a> ·
<a href="/terms-conditions">Terms & Conditions</a>
</div>
</div>
<div class="rez-footer-divider"></div>
<div class="rez-footer-notice">
<h3 class="rez-notice-heading">Important Notice</h3>
<p>ReZilta Service Solutions, LLC is not a law firm and does not provide legal advice. Immigration services are limited to non-legal administrative assistance.</p>
<p>All real estate services are provided exclusively by Abbe Beaucicot, REALTOR®, licensed under La Rosa Realty, LLC.</p>
</div>
</div>
</footer>
<style>
.rez-footer-section {
background-color: #111827 !important;
color: #E5E7EB !important;
padding: 80px 20px 60px 20px;
font-family: 'Inter', sans-serif;
text-align: left;
}
.rez-footer-container {
max-width: 1100px;
margin: 0 auto;
}
.rez-footer-logo {
color: #FFFFFF !important;
font-size: 1.6rem !important;
font-weight: 800 !important;
margin: 0 0 10px 0 !important;
}
.rez-footer-tagline {
color: #9CA3AF !important;
font-size: 1rem;
margin-bottom: 40px !important;
}
/* Stay Updated Styling */
.rez-footer-update {
margin-bottom: 40px;
max-width: 450px;
}
.rez-update-text {
font-size: 0.95rem;
color: #E5E7EB !important;
margin-bottom: 15px !important;
}
.rez-update-form {
display: flex;
gap: 10px;
}
.rez-update-input {
flex: 1;
padding: 12px 15px;
border-radius: 4px;
border: 1px solid #374151;
background-color: #1F2937;
color: #FFFFFF;
font-size: 0.9rem;
}
.rez-update-btn {
background-color: #C7A14A !important;
color: #111827 !important;
border: none;
padding: 12px 25px;
border-radius: 4px;
font-weight: 700;
cursor: pointer;
transition: opacity 0.3s ease;
}
.rez-update-btn:hover {
opacity: 0.9;
}
/* Navigation & Links */
.rez-footer-main-nav {
margin-bottom: 30px;
font-weight: 500;
color: #6B7280;
}
.rez-footer-main-nav a {
color: #FFFFFF !important;
text-decoration: none !important;
transition: color 0.3s ease;
}
.rez-footer-subheading {
color: #FFFFFF !important;
font-size: 1.1rem !important;
margin: 0 0 10px 0 !important;
font-weight: 700;
}
.rez-footer-contact-info, .rez-footer-social {
margin-bottom: 25px;
}
.rez-footer-contact-info a, .rez-social-links a {
color: #E5E7EB !important;
text-decoration: none !important;
}
.rez-footer-copyright {
margin-top: 40px;
font-size: 0.9rem;
color: #9CA3AF !important;
}
.rez-legal-links a {
color: #9CA3AF !important;
text-decoration: none !important;
}
.rez-footer-divider {
height: 1px;
background-color: #C7A14A;
width: 100%;
margin: 40px 0;
}
.rez-notice-heading {
color: #E5E7EB !important;
font-size: 0.85rem !important;
text-transform: uppercase;
letter-spacing: 1.5px;
margin-bottom: 15px !important;
font-weight: 800;
}
.rez-footer-notice p {
font-size: 0.85rem;
color: #9CA3AF !important;
line-height: 1.7;
margin-bottom: 10px;
}
.rez-footer-section a:hover {
color: #C7A14A !important;
}
@media (max-width: 600px) {
.rez-update-form {
flex-direction: column;
}
}
</style>