.elementor-144 .elementor-element.elementor-element-6382cd3{--display:flex;}/* Start custom CSS for html, class: .elementor-element-b2a9855 *//* --- FOOTER STYLES --- */
footer {
    background-color: var(--white);
    padding: 80px 0 40px;
    border-top: 1px solid var(--stone-100);
    color: var(--slate-600);
    font-size: 0.9rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

/* NEW: Logo Image Sizing */
.footer-logo-img {
    height: 70px !important; /* Adjust height as needed */
    width: auto !important;
    margin-bottom: 20px;
    display: block;
}

.footer-heading {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--slate-700);
    margin-bottom: 25px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--slate-600);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid var(--stone-100);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: var(--accent);
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }
}/* End custom CSS */