/* In lib/style.css */
.mbr-telefon {
    text-align: center; /* For inline/inline-block content */
}

.responsive-image {
    width: 400px !important;
    height: auto !important;
    display: inline-block; /* Ensure it behaves as inline-block */
}

@media (max-width: 767px) {
    .responsive-image {
        max-width: 100% !important;
        height: auto !important;
    }
}