* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #f4f6f8;
  color: #111827;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.6;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid #dfe4ea;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
}

.nav,
.wrap {
  max-width: 1120px;
  margin: 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  display: block;
  width: 164px;
  height: auto;
}

.nav-actions {
  display: flex;
  gap: 18px;
  color: #273142;
  font-weight: 700;
}

.page-hero {
  padding: 76px 20px 44px;
  background: #10151f;
  color: #ffffff;
}

.eyebrow {
  margin: 0 0 12px;
  color: #fb7185;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.02;
}

.page-hero p {
  max-width: 760px;
  margin-bottom: 0;
  color: #d1d5db;
  font-size: 20px;
}

.content {
  padding: 64px 20px 78px;
}

.content-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 42px;
  align-items: start;
}

.toc {
  position: sticky;
  top: 92px;
  border: 1px solid #dfe4ea;
  border-radius: 8px;
  padding: 20px;
  background: #ffffff;
}

.toc h2 {
  margin-bottom: 14px;
  font-size: 18px;
}

.toc ul,
.legal-section ul,
.contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.toc li + li {
  margin-top: 10px;
}

.toc a {
  color: #374151;
  font-weight: 700;
}

.toc a:hover {
  color: #e11d48;
}

.legal-panel {
  display: grid;
  gap: 24px;
}

.legal-section {
  border: 1px solid #dfe4ea;
  border-radius: 8px;
  padding: 28px;
  background: #ffffff;
}

.legal-section h2 {
  margin-bottom: 12px;
  font-size: 28px;
  line-height: 1.16;
}

.legal-section p:last-child {
  margin-bottom: 0;
}

.legal-section li {
  position: relative;
  padding-left: 20px;
  color: #374151;
}

.legal-section li + li {
  margin-top: 10px;
}

.legal-section li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #e11d48;
}

.notice {
  border-left: 4px solid #e11d48;
  padding: 16px 18px;
  background: #fff7f8;
  color: #3f4652;
  font-weight: 700;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.contact-card {
  border: 1px solid #dfe4ea;
  border-radius: 8px;
  padding: 24px;
  background: #ffffff;
}

.contact-card h2 {
  margin-bottom: 10px;
  font-size: 24px;
}

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 14px 20px;
  background: #e11d48;
  color: #ffffff;
  font-weight: 900;
}

.btn-whatsapp {
  background: #128c7e;
}

.site-footer {
  background: #0f141d;
  color: #ffffff;
  padding: 46px 20px 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 32px;
}

.footer-logo img {
  display: block;
  width: 230px;
  max-width: 100%;
  height: auto;
}

.footer-title {
  margin: 0 0 14px;
  color: #f8fafc;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  color: #cbd5e1;
}

.footer-links a:hover {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  justify-content: space-between;
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  color: #aeb7c5;
  font-size: 13px;
}

@media (max-width: 820px) {
  body {
    font-size: 16px;
  }

  .nav-actions {
    display: none;
  }

  .brand img {
    width: 142px;
  }

  .page-hero {
    padding: 54px 18px 34px;
  }

  h1 {
    font-size: 38px;
  }

  .page-hero p {
    font-size: 18px;
  }

  .content {
    padding: 44px 18px 56px;
  }

  .content-grid,
  .contact-cards,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .toc {
    position: static;
  }

  .legal-section {
    padding: 22px;
  }

  .legal-section h2 {
    font-size: 25px;
  }
}
