.site-footer {
    background-color: #0b0b0b;
    color: #fff;
    font-family: 'Segoe UI', sans-serif;
    padding: 40px 20px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}

.footer-container > div {
    flex: 1;
    min-width: 200px;
}

.footer-about,
.footer-links,
.footer-contact,
.footer-social {
    margin-bottom: 20px;
}

.footer-about h3,
.footer-links h3,
.footer-contact h3,
.footer-social h3 {
    font-size: 1.4em;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-about p,
.footer-contact p,
.footer-links ul li a {
    font-size: 1em;
    line-height: 1.6;
    color: #ccc;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    text-decoration: none;
    color: #ccc;
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: #fff;
}

.footer-social .social-icons {
    display: flex;
    gap: 15px;
}

.footer-social .social-icons a img {
    width: 32px;
    height: auto;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    margin-top: 20px;
    text-align: center;
    font-size: 0.9em;
    color: #777;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-container > div {
        width: 100%;
        max-width: 500px;
        text-align: center;
    }
}
