:root {
  --accent: #4997a0;
  --black: #111111;
  --white: #ffffff;
  --gray: #777777;
  --light: #f4f4f1;
  --border: #dddddd;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  width: 100%;
}

body {
  width: 100%;
  min-height: 100vh;
  background: var(--white);
  color: var(--black);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.7;
}

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

.privacy-header {
  min-height: 82px;
  padding: 0 max(24px, calc((100vw - 1240px) / 2));
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.privacy-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
}

.privacy-brand img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}

.back-link {
  font-size: 10px;
  letter-spacing: 0.8px;
  color: var(--gray);
}

.back-link:hover {
  color: var(--accent);
}

.privacy-container {
  width: min(calc(100% - 48px), 1100px);
  margin: 0 auto;
  padding: 110px 0 130px;
}

.privacy-heading {
  margin-bottom: 110px;
}

.privacy-heading > span {
  display: block;
  margin-bottom: 24px;
  color: var(--accent);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1.5px;
}

.privacy-heading h1 {
  font-size: clamp(55px, 8vw, 105px);
  line-height: 0.9;
  letter-spacing: -6px;
  font-weight: 600;
}

.privacy-heading h1 em {
  color: var(--accent);
  font-style: normal;
  font-weight: 500;
}

.privacy-heading > p {
  max-width: 550px;
  margin-top: 35px;
  color: var(--gray);
  font-size: 15px;
}

section {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  gap: 30px;
  padding: 55px 0;
  border-top: 1px solid var(--border);
}

.number {
  color: var(--accent);
  font-size: 9px;
  letter-spacing: 1px;
}

section > div {
  max-width: 760px;
}

section h2 {
  margin-bottom: 25px;
  font-size: clamp(25px, 3vw, 38px);
  line-height: 1.15;
  letter-spacing: -1.5px;
  font-weight: 500;
}

section p {
  margin-top: 17px;
  color: #555555;
  font-size: 14px;
}

section ul {
  margin: 22px 0 22px 20px;
  color: #555555;
  font-size: 14px;
}

section li {
  margin: 8px 0;
}

.important {
  padding: 20px;
  background: var(--light);
  border-left: 3px solid var(--accent);
  color: var(--black);
}

.update-date {
  font-size: 11px;
  color: var(--gray);
}

footer {
  min-height: 90px;
  padding: 0 max(24px, calc((100vw - 1240px) / 2));
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--gray);
  font-size: 10px;
}

footer a:hover {
  color: var(--accent);
}

@media (max-width: 700px) {
  .privacy-header {
    min-height: 70px;
    padding: 0 16px;
  }
  .privacy-brand img {
    width: 36px;
    height: 36px;
  }
  .privacy-container {
    width: calc(100% - 30px);
    padding: 75px 0 90px;
  }
  .privacy-heading {
    margin-bottom: 70px;
  }
  .privacy-heading h1 {
    font-size: 57px;
    letter-spacing: -4px;
  }
  section {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
    padding: 42px 0;
  }
  section h2 {
    margin-bottom: 17px;
  }
  footer {
    padding: 25px 16px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
}
