:root {
    --color-primary: #0f1f3d;
    --color-secondary: #1e3a68;
    --color-accent: #f59e0b;
    --color-accent-foreground: #0f1f3d;
    --color-background: #f8fafc;
    --color-surface: #ffffff;
    --color-card: #ffffff;
    --color-muted: #f1f5f9;
    --color-muted-foreground: #64748b;
    --color-border: #e2e8f0;
    --color-foreground: #0f172a;

    --shadow-soft: 0 10px 30px -5px rgba(15, 31, 61, 0.1), 0 4px 12px -2px rgba(15, 31, 61, 0.05);
    --shadow-card: 0 4px 20px -2px rgba(15, 31, 61, 0.07), 0 2px 6px -1px rgba(0, 0, 0, 0.03);
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--color-background);
    color: var(--color-foreground);
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container-onor {
    width: 100%;
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-secondary);
    background-color: rgba(30, 58, 104, 0.1);
    padding: 0.35rem 0.85rem;
    border-radius: 9999px;
    width: fit-content;
}

.rotate-180 {
    transform: rotate(180deg);
}

.transition {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 200ms;
}
