:root{
  --color-primary: #003D66;
  --color-primary-dark: #002B47;
  --color-primary-light: #EAF3F0;

  --color-accent: gray;

  --color-bg:#F4F7F8;
  --color-bg-soft: #FBF8F2;
  --color-white: #FFFFFF;

 --color-text: rgba(19, 18, 18, 0.78);
--color-text-soft: rgba(255,255,255,0.72);
  --color-border: #DDE5E1;

  --shadow-soft: 0 10px 30px rgba(31, 42, 51, 0.08);
  --shadow-card: 0 8px 24px rgba(31, 42, 51, 0.06);

  --radius-s: 10px;
  --radius-m: 16px;
  --radius-l: 24px;

  --container: 1240px;

  --font-head: "Manrope", sans-serif;
  --font-body: "Inter", sans-serif;

  --transition: 0.25s ease;
}

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

html{
  scroll-behavior: smooth;
}

body{
  margin: 0;
  background: var(--color-bg);
 color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
}

img{
  max-width: 100%;
  display: block;
}

a{
  color: inherit;
  text-decoration: none;
}

h1,h2,h3,h4,h5,h6{
  margin: 0 0 0.75rem;
  font-family: var(--font-head);
  line-height: 1.15;
  color: var(--color-text);
}

p{
  margin: 0 0 1rem;
  color: rgba(19, 18, 18, 0.78);
}

ul{
  margin: 0;
  padding: 0;
  list-style: none;
}
.qg-cta{
  margin-top:40px;
  text-align:center;
}

.qg-cta .btn{
  min-width:280px;
}
