:root {
  /* Colors */
  --primary: #233061;
  --secondary: #2ecc71;
  --accent: #e74c3c;
  --text: #333;
  --text-dark: #333;
  --text-muted: #555;
  --text-light: #888;
  --background: #f9f9f9;
  --background-light: #f4f9fb;
  --white: #fff;
  --border-color: #333;
  --footer-bg: #111;

  /* Brand colors */
  --brand-primary: #233061;
  --brand-primary-dark: #1a244a;
  --brand-secondary: #00bcd4;
  --brand-secondary-dark: #0097a7;
  --brand-dark: #233061;

  /* Typography */
  --font-base: 'Arial', sans-serif;
  --font-heading: 'Helvetica Neue', sans-serif;
  --fs-base: 16px;
  --fs-sm: 0.875rem;
  --fs-lg: 1.25rem;

  /* Additional typography */
  --fw-light: 300;
  --fw-regular: 400;
  --fw-semibold: 600;
  --fw-bold: 700;
  --lh-base: 1.5;
  --lh-heading: 1.2;

  /* Layout */
  --container-width: 1200px;
  --spacing-xs: 0.25rem;
  --spacing-sm: 20px;
  --spacing-md: 1rem;
  --spacing-lg: 60px;

  /* Border Radius & Shadows */
  --radius-sm: 4px;
  --radius-md: 8px;
  --border-radius-lg: 15px;

  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 15px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 25px rgba(0, 0, 0, 0.15);
  --shadow-light: rgba(0, 0, 0, 0.1);
  --shadow-dark: rgba(0, 0, 0, 0.15);
  --shadow-dropdown: 0 4px 12px rgba(0, 0, 0, 0.15);

  /* Button Shadows */
  --btn-shadow: 0 4px 8px rgba(0, 123, 255, 0.3);
  --btn-shadow-hover: 0 6px 12px rgba(0, 123, 255, 0.5);

  /* Gaps */
  --gap-lg: 50px;
  --gap-md: 30px;
  --gap-sm: 20px;

  /* Buttons */
  --btn-radius: 10px;

  /* Links */
  --link-color: var(--primary);
  --link-hover-color: #0056b3;

  /* Transitions */
  --transition: 0.3s ease;

  /* Z-Index */
  --z-dropdown: 1000;
  --z-modal: 1100;
  --z-tooltip: 1200;
}