/* MSPUnify Coming Soon Page - Main Stylesheet */
/* Import order is important! */

@import 'typography.css';
@import 'variables.css';
@import 'reset.css';
@import 'components.css';
@import 'layout.css';
@import 'animations.css';
@import 'problem-solution-cards.css';
@import 'hero-square-motif.css';

/* Additional utility classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mx-auto { margin-left: auto; margin-right: auto; }
.mt-auto { margin-top: auto; }
.mb-auto { margin-bottom: auto; }

.hidden { display: none; }
.block { display: block; }
.inline-block { display: inline-block; }
.flex { display: flex; }
.grid { display: grid; }

.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }

.overflow-hidden { overflow: hidden; }
.overflow-auto { overflow: auto; }