:root {
    --brand-blue: #0c3b94;
    --brand-bg: #efeffe;
}

body {
    background-color: var(--brand-bg);
}

/* Primary Brand Button Styles */
.btn-brand {
    background-color: var(--brand-blue);
    color: #ffffff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--brand-blue);
    font-weight: 800;
}

.btn-brand:hover {
    background-color: #ffffff;
    color: var(--brand-blue);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(12, 59, 148, 0.3);
}

/* Inverted State for buttons on blue backgrounds */
.btn-brand-inv {
    background-color: #ffffff;
    color: var(--brand-blue);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #ffffff;
    font-weight: 800;
}

.btn-brand-inv:hover {
    background-color: var(--brand-blue);
    color: #ffffff;
    transform: translateY(-2px);
}

/* Section Backgrounds */
.bg-brand-blue {
    background-color: var(--brand-blue);
}

.text-on-blue {
    color: #ffffff;
}

.text-on-blue a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.2s;
}

.text-on-blue a:hover {
    color: #ffffff;
}
