.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 40px 20px 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    margin-top: 60px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-content h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #fff;
}

.footer-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #bdc3c7;
}

.socials {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.socials li {
    display: inline-block;
}

.socials a {
    display: inline-block;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.socials a:hover {
    transform: translateY(-5px);
    opacity: 0.8;
}

.socials img {
    display: block;
    border-radius: 5px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 30px auto 0;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #95a5a6;
    margin: 0;
}