.footer,
footer.footer {
    background-color: #222;
    color: white;
    padding: 20px 0;
    text-align: center;
    flex-shrink: 0;
}

.footer-content {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-content > p {
    margin: 5px 0;
    font-size: 18px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-links a {
    color: white;
    font-size: 24px;
    text-decoration: none;
    transition: opacity 0.2s;
}

.social-links a:hover {
    opacity: 0.8;
}

.footer-contact {
    margin-top: 15px;
    font-size: 14px;
    text-align: center;
    line-height: 1.6;
}

.footer-contact a {
    color: white;
    text-decoration: underline;
}

.footer-contact a:hover {
    opacity: 0.9;
}