/* ============================================================
   Legal pages — Kelin Academy (offer / policy / rekvezity)
   ============================================================ */

@font-face {
  font-family: 'TildaSans';
  src: url('../zagotovki/assets/fonts/TildaSans-Regular.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'TildaSans';
  src: url('../zagotovki/assets/fonts/TildaSans-Medium.woff2') format('woff2');
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: 'TildaSans';
  src: url('../zagotovki/assets/fonts/TildaSans-Semibold.woff2') format('woff2');
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: 'TildaSans';
  src: url('../zagotovki/assets/fonts/TildaSans-Bold.woff2') format('woff2');
  font-weight: 700;
  font-display: swap;
}

:root {
  --bg: #fff5e4;
  --wine: #850e35;
  --rose: #c75b7a;
}

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

body {
  background: var(--bg);
  color: #000;
  font-family: 'TildaSans', Arial, sans-serif;
  font-size: 18px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

.header {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 40px 20px 20px;
  max-width: 960px;
  margin: 0 auto;
}
.header__back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 28px;
  background: var(--rose);
  border-radius: 30px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s ease;
  flex: none;
}
.header__back:hover { background: #b34d6a; }
.header__brand {
  font-family: 'Cormorant', serif;
  font-weight: 500;
  font-size: 32px;
  color: var(--rose);
  text-decoration: none;
}

.content {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 20px 80px;
  font-size: 18px;
  line-height: 1.6;
}
.content strong { font-weight: 700; }

@media (min-width: 960px) {
  .header { padding: 50px 40px 20px; }
  .header__brand { font-size: 48px; }
  .content { padding: 60px 20px 100px; }
}
