@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Outfit:wght@400;500;600;700&display=swap');

:root {
  
  --primary-color: #1e40af;
  --primary-dark: #1e3a8a;
  --primary-light: #eff6ff;
  --secondary-color: #ffffff;
  --accent-color: #059669;
  --accent-hover: #047857;
  --text-color: #1f2937;
  --text-muted: #4b5563;
  --bg-light: #f3f4f6;
  --bg-warning: #fef3c7;
  --border-color: #e5e7eb;
  --border-warning: #f59e0b;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  
  
  --font-heading: 'Outfit', 'Segoe UI', Arial, sans-serif;
  --font-body: 'Inter', 'Segoe UI', Arial, sans-serif;
  
  
  --max-width: 1200px;
  --header-height: 80px;
  --border-radius: 8px;
}


*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-color);
  background-color: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: var(--header-height); 
}


h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-color);
  font-weight: 700;
  line-height: 1.25;
}

h1 {
  font-size: 3rem; 
}

h2 {
  font-size: 2.25rem; 
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.75rem; 
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.25rem;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary-dark);
}


.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 5rem 0;
}


.flex {
  display: flex;
}

.grid {
  display: grid;
}

.text-center {
  text-align: center;
}


.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--border-radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.cta-button.primary {
  background-color: var(--accent-color);
  color: var(--secondary-color);
}

.cta-button.primary:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--secondary-color);
}

.cta-button.secondary {
  background-color: transparent;
  color: var(--secondary-color);
  border-color: var(--secondary-color);
}

.cta-button.secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.cta-button.outline-blue {
  background-color: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.cta-button.outline-blue:hover {
  background-color: var(--primary-light);
  transform: translateY(-2px);
}

.cta-button.full-width {
  width: 100%;
}

.cta-button.large {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}
