/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/

/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/

/* Ensure the footer container handles space properly */
footer {
  box-sizing: border-box;
}

/* Fix for mobile line breaks and centering */
@media (max-width: 767px) {
  .meridio-footer-bottom {
    flex-direction: column !important; /* Stack items on top of each other */
    text-align: center !important;
    gap: 15px;
  }
  
  .meridio-footer-links {
    display: flex;
    justify-content: center;
    gap: 15px;
  }