.site-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 0 0 0;
    font-family: sans-serif;
    border-top: 4px solid var(--secondary-color);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-logo {
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.footer-logo span {
    color: var(--secondary-color);
}

.footer-about {
    line-height: 1.6;
    color: #ccc;
    font-size: 0.95rem;
}

.footer-column h3 {
    color: var(--secondary-color);
    margin-bottom: 25px;
    font-size: 1.2rem;
    text-transform: uppercase;
    position: relative;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 2px;
    background-color: var(--secondary-color);
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px; 
}

.contact-list li {
    color: #ccc;
    margin-bottom: 15px !important;
}


.footer-bottom {
    background-color: #000000;
    padding: 20px 5%;
    margin-top: 50px;
    text-align: center;
    display: flex;
    align-items: center;
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 0.85rem;
    color: #777;
}

.footer-legal {
    display: flex;
    gap: 20px;
    list-style: none;
}

.footer-legal a {
    color: #777;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    .footer-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-bottom-content {
        flex-direction: column;
    }
}