/*
 * Professional Design CSS
 * New Color Scheme and Styling
 */

:root {
  /* Primary Colors */
  --primary-dark: #1a3a5f;
  --primary-medium: #2c5282;
  --primary-light: #4299e1;
  
  /* Accent Colors */
  --accent-gold: #d69e2e;
  --accent-green: #38a169;
  --accent-purple: #6b46c1;
  
  /* Neutral Colors */
  --neutral-white: #ffffff;
  --neutral-light: #f7fafc;
  --neutral-gray: #e2e8f0;
  --neutral-dark: #4a5568;
  --neutral-darker: #2d3748;
  
  /* Status Colors */
  --success: #38a169;
  --warning: #d69e2e;
  --error: #e53e3e;
  
  /* Shadows */
  --shadow-light: 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-medium: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-heavy: 0 20px 25px rgba(0, 0, 0, 0.15);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Border Radius */
  --radius-small: 4px;
  --radius-medium: 8px;
  --radius-large: 16px;
  --radius-circle: 50%;
  
  /* Spacing */
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  --spacing-xxl: 48px;
}

/* Base Styles */
body {
  font-family: 'Cairo', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--neutral-light);
  color: var(--neutral-darker);
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: var(--spacing-md);
  color: var(--primary-dark);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
  position: relative;
  padding-bottom: var(--spacing-md);
}

h2:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-gold), var(--primary-light));
  border-radius: 2px;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
}