.wyz-footer {
background-color: #333;
color: white;
padding: 30px 0;
margin-top: 400px;
width: 100%;
}
.wyz-footer-content {
max-width: 1152px;
margin: 0 auto;
padding: 0 20px;
display: flex;
justify-content: space-between;
flex-wrap: wrap;
gap: 30px 20px;
}
.wyz-footer-section {
display: flex;
flex-direction: column;
gap: 8px;
min-width: 150px;
}
.wyz-footer-section h4 {
margin: 0 0 10px 0;
color: #eee;
font-size: 1em;
font-weight: 600;
}
.wyz-footer-section a {
color: #ccc;
text-decoration: none;
font-size: 14px;
}
.wyz-footer-section a:hover {
color: #359756;
text-decoration: underline;
}
.wyz-social-links {
display: flex;
gap: 10px;
margin-top: 5px;
}
.wyz-social-icon {
background-color: #555;
color: white;
width: 30px;
height: 30px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
text-decoration: none;
font-size: 16px;
transition: background-color 0.2s ease;
}
.wyz-social-icon:hover { background-color: #359756; }
.wyz-footer-copy {
font-size: 12px;
color: #999;
margin-top: 10px;
}
@media (max-width: 768px) {
.wyz-footer-content { justify-content: center; text-align: center; }
.wyz-footer-section { align-items: center; }
.wyz-social-links { justify-content: center; }
}