: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;
}

/* Blog View Page Specific Styles */
.blog-content-area {
    line-height: 1.8;
    color: #334155; /* slate-700 */
    font-size: 1.125rem;
}

.blog-content-area h1, 
.blog-content-area h2, 
.blog-content-area h3, 
.blog-content-area h4, 
.blog-content-area h5 {
    color: #0f172a; /* slate-900 */
    font-weight: 800;
    line-height: 1.3;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
}

.blog-content-area h1 { font-size: 2.5rem; }
.blog-content-area h2 { font-size: 2rem; }
.blog-content-area h3 { font-size: 1.5rem; }
.blog-content-area h4 { font-size: 1.25rem; }
.blog-content-area h5 { font-size: 1.125rem; }

.blog-content-area p {
    margin-bottom: 1.75rem;
    font-size: 1.125rem;
    line-height: 1.8;
}

.blog-content-area ul, 
.blog-content-area ol {
    margin-bottom: 1.75rem;
    padding-left: 1.5rem;
}

.blog-content-area li {
    margin-bottom: 0.75rem;
}

.blog-content-area strong {
    color: #0f172a;
    font-weight: 700;
}

.blog-content-area blockquote {
    border-left: 4px solid #0c3b94;
    padding-left: 1.5rem;
    font-style: italic;
    color: #475569;
    margin: 2rem 0;
}
