:root {
    --primary-color: #001F54; /* Updated to King's Blue */
    --secondary-color: #6B7280;
    --accent-color: #FF6A00;
    --hover-color: #00B4D8;
    --background-color: #F3F4F6;
    --neutral-background: #f8f9fa;
    --bs-heading-color: #808080;
    --bs-white-rgb: 128, 128, 128;
}

body {
    background-color: var(--neutral-background);
    color: var(--secondary-color);
    font-family: Arial, sans-serif;
}

/* Fixed header height */
header {
    height: 112px; /* Adjust as needed */
}

.sticky-top {
    position: sticky;
    top: 0;
    z-index: 1020;
}

/* Adjust scroll position for sections */
section {
    scroll-margin-top: 112px; /* Match this value to the header height */
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-accent {
    color: var(--accent-color);
}

.btn-accent {
    background-color: var(--accent-color);
    color: white;
    border: none;
}

.btn-accent:hover {
    background-color: var(--hover-color);
}
