/* Legal pages – shared stylesheet */

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

@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('../fonts/PlusJakartaSans-VariableFont_wght.ttf') format('truetype');
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}

html {
  background: #000;
  color: #fff;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Header */
.frame {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2.5rem 3rem;
}

.frame .project__logo {
  height: 80px;
  display: block;
}

.frame a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.frame a:hover {
  color: #fff;
}

/* Content */
.container {
  max-width: 720px;
  margin: 2rem auto 6rem;
  padding: 0 3rem;
}

a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: #fff;
}

h1 {
  font-size: 2.2em;
  font-weight: 600;
  margin-bottom: 1.5em;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 1.3em;
  font-weight: 600;
  margin-top: 2.5em;
  margin-bottom: 0.8em;
  color: #fff;
}

h3 {
  font-size: 1.05em;
  font-weight: 500;
  margin-top: 1.8em;
  margin-bottom: 0.5em;
  color: rgba(255, 255, 255, 0.85);
}

h4 {
  font-weight: 500;
  margin-top: 1.5em;
  margin-bottom: 0.4em;
}

p {
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 0.8em;
}

ul, ol {
  color: rgba(255, 255, 255, 0.65);
  margin: 0.8em 0 1.5em;
  padding-left: 1.8em;
}

li {
  margin-bottom: 0.4em;
}

li strong {
  color: rgba(255, 255, 255, 0.85);
}

.contact-info {
  margin: 1.5em 0;
}

.contact-info p {
  margin-bottom: 0.3em;
}

.data-section {
  margin: 1.5em 0;
}

.data-section h3 {
  font-size: 1.05em;
  margin: 1em 0 0.5em;
}

/* Footer */
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2.5rem 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.site-footer__left .project__logo {
  height: 80px;
  display: block;
}

.site-footer__right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}

.site-footer a:hover {
  color: #fff;
}

/* Responsive */
@media (max-width: 600px) {
  .frame {
    padding: 1.5rem 1.5rem;
  }

  .container {
    padding: 0 1.5rem;
    margin: 1.5rem auto 4rem;
  }

  h1 {
    font-size: 1.7em;
  }

  h2 {
    font-size: 1.15em;
  }

  h3 {
    font-size: 1em;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 1.5rem;
  }

  .site-footer__left,
  .site-footer__right {
    flex-wrap: wrap;
    gap: 1rem;
  }
}
