:root {
    --primary-color: #1a365d; /* Deep Blue - Trust & Authority */
    --secondary-color: #d4af37; /* Gold/Metallic - Premium & Finance */
    --accent-color: #2c5282; /* Lighter Blue */
    --bg-light: #f7fafc;
    --text-dark: #2d3748;
    --text-muted: #718096;
    --white: #ffffff;
    --success: #38a169;
    --font-main: 'Inter', system-ui, -apple-system, sans-serif;
    --border-radius: 8px;
    --box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --transition: all 0.3s ease;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
}

h1, h2, h3, h4 {
    color: var(--primary-color);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}
