/*
 * Custom CSS for the Our Commitment (about.html) page
 * File Name: OC_CSS.css
 */

/* Define the brand colors based on the Tailwind classes you appear to be using */
/* color-primary: Matches Blue-900 (for headers/CTA sections) */
.color-primary {
    background-color: #1e3a8a; /* A dark, deep blue */
}

/* color-secondary: Matches a darker gray (for the footer) */
.color-secondary {
    background-color: #1f2937; /* A very dark gray/nearly black */
}

/* General Link Styling (optional, but good for consistency) */
a {
    transition: color 0.3s ease-in-out;
}

/* You can add more custom styles here if you want to override or add complexity beyond Tailwind utilities */