:root{
  --color-primary: #357A80;
  --color-primary-dark: #2C6268;
  --color-primary-light: #E8F2F4;

  --color-accent: #F28C38;
  --color-accent-dark: #D9752C;

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

  --color-text: #1F2A33;
  --color-text-soft: #5B6670;
  --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: var(--color-text);
  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: var(--color-text-soft);
}

ul{
  margin: 0;
  padding: 0;
  list-style: none;
}