  /* Widget Container */
        .address-widget {
            background-color: rgb(255 255 255 / 73%);
            border: 1px solid #ddd;
            border-radius: 8px;
            padding: 20px;
            max-width: 400px;
            margin: 20px auto;
            font-family: Arial, sans-serif;
        }

        .address-widget h2 {
            font-size: 1.5em;
            color: #333;
            margin-bottom: 10px;
            text-align: center;
        }

        .address-widget p {
            margin: 5px 0;
            color: #555;
        }

        .address-widget p strong {
            color: #333;
        }

        .address-widget .address-item {
            display: flex;
            align-items: center;
            margin: 5px 0;
        }

        .address-widget .address-item i {
            margin-right: 10px;
            color: #007BFF;
        }

        .address-widget .map-link {
            color: #007BFF;
            text-decoration: none;
            font-size: 0.9em;
            display: block;
            margin-top: 10px;
            text-align: center;
        }

        .address-widget .map-link:hover {
            text-decoration: underline;
        }