
:root {
    --primary-color: #0d3858;
    --secondary-color: #ffffff;
    --accent-color: #ffffff;
    --text-color: #0d3858;
    --background-color: #ffffff;
    --dark-color: #0d3858;
    --light-color: #ffffff;
    --text-muted: #0d3858;
    --border-color: #0d3858;
    --shadow: 0 4px 15px rgba(13, 56, 88, 0.15);
    --transition: all 0.3s ease;
}

body { background-color: var(--background-color); color: var(--text-color); }
.navbar { background: var(--primary-color) !important; }
.btn-primary { background: var(--primary-color); color: var(--secondary-color); }
.btn-primary:hover { background: var(--primary-color); opacity: 0.9; }
footer { background: #0d3858 !important; }
.card::before { background: var(--primary-color); }
.text-primary { color: var(--primary-color) !important; }
h1, h2, h3, h4, h5, h6 { color: var(--text-color); }
