/* Footer Address Stacking Fix */
footer .f-item.contact-widget .address ul li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

footer .f-item.contact-widget .address ul li .icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    flex-shrink: 0;
    margin-right: 10px;
}

footer .f-item.contact-widget .address ul li .content {
    flex: 1;
    line-height: 1.6;
}

footer .f-item.contact-widget .address ul li .content strong {
    display: inline;
    margin-right: 5px;
}

/* Address text wraps after "Address:" label */
footer .f-item.contact-widget .address ul li:first-child .content {
    display: inline;
}

footer .f-item.contact-widget .address ul li:first-child .content br:first-of-type {
    display: block;
    content: "";
    margin-top: 0.2em;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    footer .f-item.contact-widget .address ul li:first-child {
        font-size: 14px;
        padding-right: 10px;
    }
}

@media (min-width: 769px) {
    footer .f-item.contact-widget .address ul li:first-child {
        max-width: 100%;
    }
}

/* Mobile: Center all contact info */
@media (max-width: 767px) {
    footer .f-item.contact-widget {
        text-align: center;
    }

    footer .f-item.contact-widget .address ul {
        display: inline-block;
        text-align: left;
    }

    footer .f-item.contact-widget .address ul li {
        justify-content: center;
    }

    footer .f-item.contact-widget h4.widget-title {
        text-align: center;
    }
}
