@font-face {
  font-family: "UAF Sans";
  src: url("../fonts/UAFSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "UAF Sans";
  src: url("../fonts/UAFSans-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "UAF Sans";
  src: url("../fonts/UAFSans-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #ffffff;
  --text: #111111;
  --muted-bg: #f4f4f4;
  --border: rgba(0, 0, 0, 0.08);
}

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

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "UAF Sans", Arial, sans-serif;
  -webkit-text-size-adjust: 100%;
}

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

.page-szch {
  background: #fff;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.szch-banner {
  width: 100%;
  background: #fff;
  margin-bottom: 28px;
}

.szch-banner__img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.szch-banner__img--mobile {
  display: none;
}

.szch-banner__img--desktop {
  display: block;
}

.szch-copy {
  padding: 0 0 24px;
}

.szch-title {
  margin: 0 0 18px;
  font-size: clamp(22px, 4.2vw, 40px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.szch-text {
  max-width: 980px;
  font-size: 18px;
  line-height: 1.65;
  font-weight: 400;
}

.szch-text p {
  margin: 0 0 14px;
}

.szch-subtitle {
  margin: 18px 0 10px;
  font-weight: 700;
}

.szch-list {
  margin: 10px 0 18px;
  padding-left: 18px;
}

.szch-list li {
  margin: 6px 0;
}

.szch-special {
  font-weight: 700;
}

.szch-form {
  padding: 28px 0 72px;
}

.szch-form__wrap {
  display: flex;
  justify-content: center;
}

.szch-form__box {
  width: 100%;
  max-width: 720px;
  background: #fff;
  border-radius: 16px;
  padding: 18px;
}

.szch-form-embed {
  width: 100%;
  min-height: 120px;
}

.footer {
  background: var(--muted-bg);
  padding: 56px 0;
}

.footer__container {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: flex-start;
}

.footer__left {
  flex: 0 1 58%;
}

.footer__right {
  flex: 0 1 42%;
}

.footer__title {
  width: 100%;
  max-width: 470px;
  height: auto;
}

.footer__socials,
.footer__jobs {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.footer__socials {
  margin-bottom: 22px;
}

.footer__socials li a,
.footer__jobs li a {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.footer__socials li a:hover,
.footer__jobs li a:hover {
  transform: translateY(-1px);
  opacity: 0.85;
}

.footer__socials img,
.footer__jobs img {
  max-width: 48px;
  max-height: 48px;
  width: auto;
  height: auto;
}

.footer__jobs img[alt="DOU.ua"] {
  max-width: 48px;
}

@media (max-width: 900px) {
  .szch-banner {
    margin-bottom: 22px;
  }

  .szch-copy {
    padding-bottom: 18px;
  }

  .szch-form {
    padding: 22px 0 56px;
  }

  .footer {
    padding: 42px 0;
  }

  .footer__container {
    flex-direction: column;
    gap: 28px;
  }

  .footer__left,
  .footer__right {
    flex: 1 1 auto;
    width: 100%;
  }
}

@media (max-width: 600px) {
  .szch-banner__img--desktop {
    display: none;
  }

  .szch-banner__img--mobile {
    display: block;
  }
}

@media (max-width: 520px) {
  .container {
    padding: 0 16px;
  }

  .szch-banner {
    margin-bottom: 18px;
  }

  .szch-title {
    font-size: 28px;
    line-height: 1.06;
  }

  .szch-text {
    font-size: 16px;
    line-height: 1.6;
  }

  .szch-form__box {
    padding: 14px;
    border-radius: 14px;
  }

  .footer {
    padding: 34px 0;
  }

  .footer__title {
    max-width: 300px;
  }

  .footer__socials,
  .footer__jobs {
    gap: 16px;
  }

  .footer__socials li a,
  .footer__jobs li a {
    width: 56px;
    height: 56px;
  }

  .footer__socials img,
  .footer__jobs img {
    max-width: 48px;
    max-height: 48px;
  }

  .footer__jobs img[alt="DOU.ua"] {
    max-width: 40px;
  }
}