/* Footer Standard Styles extracted from index.html */
.footer-section {
    background-color: #fff;
    padding: 40px 0 0px;
    color: #333;
    border-top: 1px solid #eee;
}

.footer-title {
    font-size: 16px;
    font-weight: bold;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 4px;
}

.footer-links a {
    color: #777;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #6fa337;
}

.footer-address-col {
    padding: 0 15px;
}

.footer-address-title {
    font-weight: bold;
    margin-bottom: 4px;
    font-size: 15px;
    color: #333;
}

.footer-address-text {
    font-size: 13px;
    color: #777;
    line-height: 1.6;
    margin-bottom: 0;
}

.address-divider {
    border-left: 1px solid #ccc;
    height: 80px;
    margin: 0 10px;
}

.footer-social-icons {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
}

.social-icon-circle {
    width: 35px;
    height: 35px;
    background-color: #000;
    color: #fff !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background-color 0.3s;
    font-size: 16px;
}

.social-icon-circle:hover {
    background-color: #6fa337;
}

.footer-legal-links {
    font-size: 14px;
    color: #777;
    margin-bottom: 12px;
}

.footer-legal-links a {
    color: #777;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-legal-links a:hover {
    color: #6fa337;
}

.footer-legal-links span {
    margin: 0 8px;
    color: #ddd;
}

.footer-contact-info {
    font-size: 14px;
    color: #333;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.copyright-bar {
    background-color: #000;
    color: #fff;
    padding: 15px 0;
    text-align: center;
    font-size: 15px;
    width: 100%;
}