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

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

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

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

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", Arial, sans-serif;
  color: #1f1f1f;
  background: #f6f6f6;
  line-height: 1.6;
}

a {
  color: #1f1f1f;
}

.legal-header {
  background: #ffffff;
  border-bottom: 1px solid #e2e2e2;
}

.legal-header-inner {
  width: min(1100px, 92vw);
  margin: 0 auto;
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.legal-shell {
  width: min(1100px, 92vw);
  margin: 0 auto;
  padding: 40px 0 64px;
}

.legal-content {
  background: #ffffff;
  border: 1px solid #e2e2e2;
  padding: 40px;
}

.legal-content h1,
.legal-content h2,
.legal-content h3,
.legal-content h4 {
  line-height: 1.3;
}

.legal-content ul {
  padding-left: 22px;
}

@media (max-width: 700px) {
  .legal-header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .legal-content {
    padding: 24px;
  }
}
