.site-disclaimer {
    text-align: justify;
    border-left: 5px solid red;
    padding: 10px 30px 10px 30px;
    background-color: #f9f9f9;
    display: flex; /* Use flexbox for icon and text alignment */
    align-items: center; /* Vertically center icon with text */
    gap: 10px; /* Space between icon and text */
}

.site-disclaimer:before {
    content: '\f348'; /* Dashicons "info" icon (you can change this code) */
    font-family: "dashicons"; /* Ensure Dashicons font is applied */
    font-size: 24px; /* Adjust size of the icon */
    color: red; /* Matches the border color for a consistent theme */
    margin-right: 10px; /* Small space between the icon and text */
}