/* Address Widget */
.address-widget {
    line-height: 1.6;
}

.map-image {
    margin-bottom: 15px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.map-image img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.map-image:hover img {
    transform: scale(1.03);
}

.address-details {
    color: #666666;
}

.address-item {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
}

.address-item i {
    color: #ff5c00;
    margin-right: 12px;
    margin-top: 4px;
    font-size: 16px;
    min-width: 20px;
    text-align: center;
}

.address-item a {
    color: #666666;
    transition: color 0.3s ease;
    text-decoration: none;
}

.address-item a:hover {
    color: #ff5c00;
}