* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: #252525;
  background: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

a {
  color: #0080fe;
  text-decoration: none;
}

a:hover,
a:focus {
  color: #de6906;
  text-decoration: none;
}

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

.container {
  width: min(1140px, calc(100% - 30px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 60px;
  background: #ffffff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 60px;
  gap: 24px;
}

.logo img {
  height: 36px;
  width: auto;
  display: block;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  color: #252525;
  cursor: pointer;
  position: relative;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  position: absolute;
  left: 9px;
  width: 24px;
  height: 2px;
  background: currentColor;
}

.menu-toggle span {
  top: 20px;
}

.menu-toggle::before {
  top: 13px;
}

.menu-toggle::after {
  top: 27px;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 60px;
  padding: 0 15px;
  color: #252525;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a:focus,
.main-nav a.active {
  color: #0080fe;
}

.bip-link img {
  max-height: 38px;
  width: auto;
}

.page-title {
  padding: 30px 0;
  background: #0345bf;
}

.page-title h1 {
  margin: 0;
  color: #ffffff;
  font-size: 34px;
  font-weight: 400;
  line-height: 1.2;
}

.main-content {
  padding: 50px 0;
}

.hero {
  padding: 50px 0;
}

.hero-frame {
  position: relative;
  overflow: hidden;
  text-align: left;
}

.hero-frame img {
  width: 100%;
  display: block;
}

.hero-frame h1 {
  position: absolute;
  left: 6%;
  bottom: 5%;
  margin: 0;
  max-width: 70%;
  color: #51647a;
  font-size: 50px;
  font-weight: 400;
  line-height: 1;
}

.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 30px;
  padding: 50px 0;
}

.service-row:nth-child(odd) .service-image {
  order: 2;
}

.service-row:nth-child(odd) .service-title {
  order: 1;
  text-align: right;
}

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

.service-title {
  color: #252525;
  font-size: 55px;
  font-weight: 300;
  line-height: 1.1;
}

.content-block {
  padding: 0;
}

.content-block h2,
.content-block h3 {
  margin: 0 0 15px;
  color: #252525;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.25;
}

.content-block p {
  margin: 0 0 18px;
}

.documents-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding-top: 35px;
}

.documents-grid.two {
  grid-template-columns: repeat(2, 1fr);
}

.document-card {
  text-align: center;
  padding: 20px 10px;
}

.pdf-icon {
  display: block;
  color: #0080fe;
  font-size: 42px;
  line-height: 1;
  margin-bottom: 14px;
}

.document-card h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

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

.news-image h2 {
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 20px;
}

.article {
  max-width: 1000px;
}

.site-footer {
  padding: 22px 0;
  color: #ffffff;
  background: #171717;
}

.site-footer ul {
  margin: 0;
  padding-left: 20px;
  list-style-type: square;
}

.site-footer a {
  color: #ffffff;
}

.scroll-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 25;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 2px;
  background: #0080fe;
  color: #ffffff;
  cursor: pointer;
  display: none;
}

.scroll-top.visible {
  display: block;
}

.cookie-consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 30;
  display: none;
  background: #0345bf;
  color: #ffffff;
  padding: 14px 20px;
}

.cookie-consent.visible {
  display: block;
}

.cookie-inner {
  width: min(1140px, calc(100% - 30px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cookie-consent p {
  margin: 0;
  line-height: 1.5;
}

.cookie-consent button {
  flex: 0 0 auto;
  border: 0;
  background: #ffffff;
  color: #333333;
  padding: 8px 18px;
  cursor: pointer;
}

@media (max-width: 991px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    inset: 60px 0 auto auto;
    width: min(320px, 88vw);
    min-height: calc(100vh - 60px);
    padding: 24px;
    align-items: stretch;
    justify-content: flex-start;
    flex-direction: column;
    background: #ffffff;
    box-shadow: -8px 0 20px rgba(0, 0, 0, 0.12);
    transform: translateX(105%);
    transition: transform 0.25s ease;
  }

  body.nav-open .main-nav {
    transform: translateX(0);
  }

  .main-nav a {
    min-height: 44px;
    padding: 0;
    font-size: 16px;
  }

  .hero-frame h1 {
    font-size: 30px;
  }

  .service-title {
    font-size: 40px;
  }
}

@media (max-width: 767px) {
  body {
    font-size: 15px;
  }

  .page-title {
    padding: 30px 0;
  }

  .page-title h1 {
    font-size: 28px;
  }

  .hero {
    padding: 30px 0;
  }

  .hero-frame h1 {
    font-size: 18px;
    max-width: 76%;
  }

  .service-row,
  .service-row:nth-child(odd) {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 32px 0;
  }

  .service-row:nth-child(odd) .service-image,
  .service-row:nth-child(odd) .service-title {
    order: initial;
    text-align: center;
  }

  .service-title {
    text-align: center;
    font-size: 34px;
  }

  .documents-grid,
  .documents-grid.two,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .cookie-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}
