@font-face {
  font-display: swap;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/roboto-v49-latin-regular.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/roboto-v49-latin-500.woff2") format("woff2");
}

@font-face {
  font-display: swap;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/roboto-v49-latin-700.woff2") format("woff2");
}

:root {
  --color-primary-light: #ffffff;
  --color-brand-light: #2b7fff;
  --color-brand-dark: #011c44;
}
/* Base */
* {
  box-sizing: border-box;
}
body {
  color: var(--color-brand-dark);
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
}

/* Typography */
h1 {
  font-size: 128px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
}

h2 {
  font-size: 64px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
}

h3 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

h4 {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.3;
  margin: 0;
}

p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.76;
  margin: 0;
}

/* Titles and accents */
/* Delete after end whiyh css */
.hero-section {
  background-color: #f5f5f5;
  padding: 60px 0;
  text-align: center;
}

.hero-section img {
  width: 200px;
  height: auto;
  margin: 20px 0;
}

.hero-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-primary-light);
  text-align: center;
}

.section-title {
  font-size: 64px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}

.transformation-title {
  font-size: 64px;
  font-weight: 700;
  line-height: 1.3;
}

.whychooseus-title {
  font-size: 64px;
  font-weight: 700;
  line-height: 1.3;
}

/* Header */
/* Delete after end whiyh css */
header {
  background-color: #333333;
  padding: 20px 0;
}

/* Navigation and links */
.link {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-primary-light);
  text-decoration: none;
}

.link:hover {
  color: var(--color-brand-light);
}

/* Button */
.button {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  padding: 16px 32px;
  border-radius: 8px;
  border: 2px solid var(--color-brand-light);
  background-color: var(--color-brand-light);
  color: var(--color-primary-light);
  cursor: pointer;
  transition: all 0.3s;
}

.button:hover {
  background-color: transparent;
  color: var(--color-brand-light);
}

/* Text content */
.transformation-text {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.76;
}

.whychooseus-text {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.76;
}

/* Address links */
.adress-link {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-primary-light);
  text-decoration: none;
}

.adress-link:hover {
  color: var(--color-brand-light);
}

/* Accent spans */
span {
  color: var(--color-brand-light);
}

span[lang="en"] {
  color: var(--color-brand-light);
  text-transform: lowercase;
}
