:root {
  --content-width: 980px;
  --card: #ffffff;
  --text: #1d2430;
  --muted: #546174;
  --accent: #0f766e;
  --border: #d9e1ec;
  --overlay-top: rgba(104, 180, 255, 0.95);
  --overlay-bottom: rgba(21, 33, 59, 0.95);
  --text-secondary: #475569;
  --heading-anthracite: #2f343a;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, sans-serif;
  background: linear-gradient(180deg, #eef4fb 0%, #f9fbff 100%);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.privacy-hero,
.privacy-main {
  max-width: var(--content-width);
  margin-left: auto;
  margin-right: auto;
}

.privacy-hero {
  margin-top: 40px;
  margin-bottom: 18px;
  padding: 0 20px;
  background: transparent;
}

.hero-inner {
  width: 100%;
}

.hero-content {
  display: grid;
  gap: 12px;
  justify-items: center;
  text-align: center;
}

.brand-logo {
  display: block;
  width: min(100%, clamp(270px, 45vw, 540px));
  max-width: 540px;
  height: auto;
  margin: 0 0 50px;
}

h1 {
  margin: 0 0 10px;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  color: var(--heading-anthracite);
}

h2 {
  margin-top: 28px;
  margin-bottom: 10px;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  color: var(--heading-anthracite);
}

h3,
h4,
h5,
h6 {
  color: var(--heading-anthracite);
}

.privacy-main {
  padding: 0 20px 40px;
}

.privacy-layout {
  display: grid;
  gap: 18px;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 14px 35px rgba(20, 36, 63, 0.08);
}

.page-body {
  padding-top: 24px;
}

.privacy-card p,
.privacy-card ul,
.privacy-card li {
  color: var(--text-secondary);
}

section.card.page-body p,
section.card.privacy-card p,
section.card.page-body li,
section.card.privacy-card li {
  text-align: justify;
  text-justify: inter-word;
}

section.card.page-body p,
section.card.privacy-card p {
  margin: 0 0 12px;
  padding-left: 18px;
  padding-right: 18px;
  line-height: 1.72;
}

section.card.page-body ul,
section.card.page-body ol,
section.card.privacy-card ul,
section.card.privacy-card ol {
  margin: 0 0 14px 0;
  padding-left: 36px;
  padding-right: 18px;
}

section.card.page-body li,
section.card.privacy-card li {
  margin: 0 0 8px;
  line-height: 1.66;
}

.contact {
  padding: 14px;
  border-radius: 10px;
  border: 1px solid #cfe6e2;
  background: #f1fbf9;
}

a {
  color: var(--accent);
}

.site-footer {
  max-width: none;
  width: 100%;
  margin: auto 0 0;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-size: 0.92rem;
  color: rgba(233, 239, 255, 0.9);
  background: linear-gradient(90deg, var(--overlay-top), var(--overlay-bottom));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 36px rgba(9, 25, 50, 0.35);
  padding: clamp(20px, 4vw, 36px);
}

.site-footer .footer-main,
.site-footer .footer-bottom {
  width: min(var(--content-width), 100%);
  margin-left: auto;
  margin-right: auto;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 22px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-logo {
  width: 190px;
  max-width: 100%;
  height: auto;
}

.footer-column a,
.footer-column span,
.footer-utility a {
  color: rgba(233, 239, 255, 0.9);
}

.site-footer .entity-name {
  font-weight: 700;
}

.site-footer,
.site-footer p,
.site-footer li,
.site-footer a,
.site-footer span {
  color: rgba(233, 239, 255, 0.9);
}

.site-footer p,
.site-footer li,
.site-footer ul {
  margin: 0;
}

.site-footer a {
  text-decoration: none;
  opacity: 0.95;
}

.site-footer a:hover {
  opacity: 1;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 18px;
}

.footer-utility {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-utility a {
  font-weight: 600;
}

@media (max-width: 900px) {
  .footer-main {
    flex-direction: column;
  }
}
