/* Color Palette Variables */
:root {
  /* Primary Colors */
  --primary-color: #0066cc;
  --secondary-color: #28a745;
  --accent-color: #ffc107;

  /* Neutral Colors */
  --dark-color: #333;
  --light-color: #f8f9fa;
  --white: #fff;
  --gray: #6c757d;

  /* Backgrounds */
  --hero-bg-gradient: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  --section-bg: #fff;
  --alt-bg: #f8f9fa;

  /* Text Colors */
  --text-primary: #333;
  --text-secondary: #666;
  --text-light: #fff;

  /* Borders and Shadows */
  --border-color: rgba(0, 0, 0, 0.1);
  --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}