/* ============================================================
   GLOBAL SETUP & FONTS
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&family=League+Spartan:wght@700&family=Montserrat:wght@600&display=swap');

:root {
    --primary: #40387A;
    --accent: #A095EE;
    --slate: #E2E8F0;
    --white: #FFFFFF;
    --dark-deep: #0a0a0f; /* Refined for deeper contrast */
    --text-muted: #94a3b8;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--white);
    color: #1e293b;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.brand-logo{
    max-width:250px;
}