/* Base Styles & CSS Variables - Centralized */
:root {
  /* Primary Colors */
  --primary: #1084c3;
  --primary-color: #1084c3;
  --secondary-color: #0a2540;
  --accent-color: #ffd700;
  
  /* Basic Colors */
  --dark: #0a2540;
  --light: #fff;
  --bg: #ffffff;
  
  /* Grey Scale */
  --grey-100: #f8fafc;
  --grey-200: #e2e8f0;
  --grey-300: #cbd5e1;
  
  /* Text Colors */
  --text-light: #fff;
  --text-dark: #0a2540;
  --text-primary: #1e293b;
  --text-secondary: #64748b;
  
  /* UI Colors */
  --border-color: #e2e8f0;
  --muted: #6c757d;
  
  /* Layout Variables */
  --page-padding: 48px;
  --max-width: 1100px;
  --radius: 8px;
  --header-height: 84px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--dark);
  background-color: var(--light);
  overflow-x: hidden;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Global Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}