Footer
/* General Styles */
body {
margin: 0;
font-family: Arial, sans-serif;
}
/* Footer Styles */
.site-footer {
background-color: #333;
color: #fff;
padding: 20px 0;
text-align: center;
}
.footer-container {
display: flex;
flex-direction: column;
align-items: center;
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
.footer-logo img {
width: 150px; /* Adjust as needed */
margin-bottom: 20px;
}
.footer-about {
margin-bottom: 20px;
text-align: center;
}
.footer-about h2 {
margin-bottom: 10px;
font-size: 1.5rem;
}
.footer-about p {
margin: 0;
max-width: 500px;
}
.footer-links ul {
list-style: none;
padding: 0;
margin: 0;
display: flex;
gap: 20px;
margin-bottom: 20px;
}
.footer-links ul li a {
color: #fff;
text-decoration: none;
font-weight: bold;
}
.footer-social {
margin-bottom: 20px;
}
.footer-social a {
color: #fff;
margin: 0 10px;
text-decoration: none;
font-weight: bold;
}
.footer-newsletter {
margin-bottom: 20px;
text-align: center;
}
.footer-newsletter input[type=”email”] {
padding: 10px;
margin-right: 10px;
border: none;
border-radius: 5px;
}
.footer-newsletter button {
padding: 10px;
border: none;
border-radius: 5px;
background-color: #ff5722;
color: #fff;
cursor: pointer;
}
.footer-newsletter h2 {
margin-bottom: 10px;
font-size: 1.2rem;
}
.footer-copyright {
margin-top: 20px;
}
.footer-copyright p {
margin: 0;
font-size: 0.875rem;
}
/* Responsive Styles */
@media (max-width: 768px) {
.footer-links ul {
flex-direction: column;
gap: 10px;
}
}