.new-site-footer {
    background-color: var(--dark-color, #333);
    color: var(--light-color, #f5f5f5);
    padding: 60px 0 20px 0;
    font-family: var(--font-family, 'Poppins', sans-serif);
}

.footer-logo {
    max-width: 180px;
    padding: 5px;
    border-radius: 5px;
}

.footer-description {
    font-size: 0.9rem;
    color: #bdc3c7;
    line-height: 1.6;
}

.footer-heading {
    font-weight: 600;
    color: var(--white-color, #fff);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.1rem;
}

.contact-list {
    list-style: none;
    padding: 0;
}

.contact-list li {
    margin-bottom: 12px;
    font-size: 1rem;
    display: flex;
    align-items: center;
}

.contact-list i {
    color: var(--secondary-color, #ffab00);
    margin-right: 15px;
    width: 20px;
    text-align: center;
}

.social-icons-footer .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #4e4e4e;
    color: var(--light-color, #f5f5f5);
    font-size: 1.5rem;
    margin: 0 10px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.social-icons-footer .social-icon:hover {
    background-color: var(--secondary-color, #ffab00);
    color: var(--white-color, #fff);
}

.footer-bottom-text {
    border-top: 1px solid #4e4e4e;
    padding-top: 20px;
    margin-top: 40px;
    font-size: 0.85rem;
    color: #bdc3c7;
}