/* === Theme Colors === */
:root {
    --automatika-primary: #E83F3F;
    --automatika-secondary: #447AE5;
    --automatika-black: #1E1E1E;
}

/* === Text color classes === */
.text-red {
    color: var(--automatika-primary);
}

.text-blue {
    color: var(--automatika-secondary);
}

.text-red-strong {
    color: var(--automatika-primary);
    font-weight: bold;
}

/* === H3 === */
h3 {
    font-size: 1.5rem !important;
    /* Default is often ~1.25rem */
    font-weight: 700 !important;
    /* Make it extra bold */
    margin-top: 2.5rem !important;
    /* Add breathing room above */
    margin-bottom: 1rem !important;
    /* Space below */
    /* Ensure high contrast */
    letter-spacing: -0.01em;

}

/* === H4 === */
h4 {
    font-size: 1.2rem !important;
    font-weight: 600 !important;
    /* Semi-bold */
    margin-top: 1.75rem !important;
    margin-bottom: 0.75rem !important;
    /* Slightly softer black/white */
}
