footer {
background-color: #222;
color: #fff;
padding: 50px 20px;
font-family: Arial, sans-serif;
}
.footer-container {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
gap: 30px;
}
.footer-business, .footer-links, .footer-services, .footer-social {
flex: 1 1 200px;
}
.footer-business h3, .footer-links h4, .footer-services h4, .footer-social h4 {
margin-bottom: 15px;
color: #FFD700; /* gold accent color for headings */
}
.footer-links ul, .footer-services ul {
list-style: none;
padding: 0;
}
.footer-links li, .footer-services li {
margin-bottom: 8px;
}
.footer-links a, .footer-services a, .footer-social a, .footer-business a {
color: #fff;
text-decoration: none;
}
.footer-links a:hover, .footer-services a:hover, .footer-social a:hover, .footer-business a:hover {
text-decoration: underline;
}
.footer-bottom {
text-align: center;
margin-top: 25px;
font-size: 14px;
color: #ccc;
}
/* CTA Button Styling */
.cta-button {
display: inline-block;
margin-top: 10px;
padding: 10px 20px;
background-color: #28a745; /* green button for action */
color: #fff;
text-decoration: none;
border-radius: 5px;
transition: 0.3s;
}
.cta-button:hover {
background-color: #1e7e34;
}