/* Base container styling */
        .Branch-Location-widget {
            max-width: 100%;
            background-color: #fff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            font-family: Arial, sans-serif;
        }

        /* Image container and actual image styling */
        .widget-image {
            width: 100%;
            height: 250px;
            overflow: hidden;
        }

        .widget-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* Content padding */
        .widget-content {
            padding: 15px 20px;
        }

        /* Business Name styling */
        .business-name, 
        .widget-content, .business-name {
            font-size: 20px;
            font-weight: 700;
            color: #333;
            margin-top: 0;
            margin-bottom: 15px;
        }

        /* Info Lines (Dealer, Address) */
        .info-line {
            display: flex;
            align-items: flex-start;
            margin-bottom: 10px;
            font-size: 14px;
            color: #555;
        }

        .info-line .icon {
            margin-right: 8px;
            font-size: 16px;
            color: #ff6600;
            flex-shrink: 0;
        }

        /* Address line specific adjustments */
        .address-line {
            line-height: 1.4;
            margin-bottom: 15px;
        }

        /* Separator line */
        .separator {
            border: none;
            border-top: 1px solid #ddd;
            margin: 15px 0;
        }

        /* Action Area */
        .action-area {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 15px;
            padding-top: 5px;
            padding-bottom: 5px;
        }

        /* Contact Us Link - Remove underline */
        .contact-us-link {
            text-decoration: none !important;
            color: inherit;
            flex-shrink: 0;
        }

        .contact-us-link:hover,
        .contact-us-link:focus,
        .contact-us-link:active,
        .contact-us-link:visited {
            text-decoration: none !important;
        }

        /* Contact Us Text */
        .contact-us {
            display: flex;
            align-items: center;
            font-size: 16px;
            color: #333;
            font-weight: 500;
            text-decoration: none !important;
        }

        .contact-us .icon {
            margin-right: 8px;
            font-size: 18px;
            color: #ff6600;
        }

        .contact-us .text {
            text-decoration: none !important;
        }

        /* View Details Button - Remove underline */
        
        /*
         .view-details-btn {
            display: inline-block;
            padding: 10px 18px;
            background-color: #e56d2f;
            color: #fff !important;
            text-decoration: none !important;
            font-size: 14px;
            font-weight: 600;
            border-radius: 4px;
            transition: background-color 0.3s;
            text-transform: uppercase;
            white-space: nowrap;
            background-color: white;
 
        }

        .view-details-btn:hover,
        .view-details-btn:focus,
        .view-details-btn:active,
        .view-details-btn:visited {
            background-color: #d15c25;
            
            text-decoration: none !important;
            color: #fff !important;
            
        }*/
        
        
        
       .view-details-btn {
    display: inline-block;
    padding: 10px 18px;
    background-color: #e56d2f; /* Orange/Red color from the image */
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
    text-transform: uppercase;
}

.view-details-btn:hover {
    background-color: #d15c25; /* Slightly darker on hover */
} 
        
        
        
        
        
        
        

        /* Mobile Responsive Styles */
        @media screen and (max-width: 640px) {
            .Branch-Location-widget {
                border-radius: 6px;
            }

            .widget-image {
                height: 200px;
            }

            .widget-content {
                padding: 12px 15px;
            }

            .business-name, 
            .widget-content p.business-name {
                font-size: 18px;
                margin-bottom: 12px;
            }

            .info-line {
                font-size: 13px;
                margin-bottom: 8px;
            }

            .info-line .icon {
                font-size: 14px;
            }

            .separator {
                margin: 12px 0;
            }

            .action-area {
                flex-direction: column;
                align-items: stretch;
                gap: 12px;
            }

            .contact-us {
                font-size: 15px;
                justify-content: center;
            }

            .view-details-btn {
                width: 100%;
                text-align: center;
                padding: 12px 18px;
                font-size: 13px;
            }
        }

        /* Small mobile devices */
        @media screen and (max-width: 380px) {
            .widget-image {
                height: 180px;
            }

            .widget-content {
                padding: 10px 12px;
            }

            .business-name, 
            .widget-content p.business-name {
                font-size: 16px;
            }

            .info-line {
                font-size: 12px;
            }

            .contact-us {
                font-size: 14px;
            }

            .view-details-btn {
                font-size: 12px;
                padding: 10px 15px;
            }
        }

        /* Tablet landscape */
        @media screen and (min-width: 641px) and (max-width: 1024px) {
            .Branch-Location-widget {
                max-width: 500px;
                margin: 0 auto;
            }
        }