/* Add Google Fonts import at the top */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');
/* Primary color variable */
:root {
  --primary-color: #22C55E;
  --secondary-color: #0E121E;
}

/* Font sizes and weights */
h1 {
  font-size: 36px;
  font-weight: 600;
}

h2 {
  font-size: 32px;
  font-weight: 600;
}

h3 {
  font-size: 24px;
  font-weight: 600;
}

h4 {
  font-size: 20px;
  font-weight: 600;
}

h5 {
  font-size: 18px;
  font-weight: 600;
}

h6 {
  font-size: 16px;
  font-weight: 500;
}

body {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #333;
  margin: 0;
  padding: 0;
  font-family: 'Poppins', Arial, sans-serif;
}