﻿:root {
  --dcp-blue: #0f3c85;
  --dcp-blue-dark: #092a61;
  --dcp-green: #1f7a4d;
  --dcp-surface: #ffffff;
  --dcp-muted: #f4f7fb;
  --dcp-border: #d8e1ec;
  --dcp-text: #172033;
  --dcp-text-muted: #526070;
}

* {
  box-sizing: border-box;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  width: 100%;
  margin: 1rem auto 0;
  padding: 0.75rem 1rem;
  background: #f3f4f6;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.65rem 0.95rem;
  border: 1px solid var(--dcp-border);
  border-radius: 999px;
  background: var(--dcp-surface);
  color: var(--dcp-blue);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(15, 60, 133, 0.08);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  border-color: var(--dcp-blue);
  background: var(--dcp-blue);
  color: #ffffff;
  outline: none;
}

.company-information {
  width: min(100% - 32px, 1180px);
  margin: 2rem auto;
  padding: 1.25rem;
  border: 1px solid var(--dcp-border);
  border-radius: 18px;
  background: var(--dcp-muted);
  color: var(--dcp-text);
  text-align: center;
}

.company-information h2 {
  margin: 0 0 0.75rem;
  color: var(--dcp-blue-dark);
  font-size: 1.25rem;
}

.company-information p {
  max-width: 920px;
  margin: 0.35rem auto;
  line-height: 1.6;
  text-align: center;
}

.site-footer {
  margin-top: 2rem;
  padding: 1.25rem 1rem;
  border-top: 1px solid var(--dcp-border);
  background: var(--dcp-muted);
  text-align: center;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1rem;
  margin: 0;
  color: var(--dcp-text-muted);
  font-size: 0.95rem;
  text-align: center;
}

.footer-legal a {
  color: var(--dcp-blue);
  font-weight: 700;
  text-decoration: none;
}

.footer-legal a:hover,
.footer-legal a:focus-visible {
  text-decoration: underline;
}

.policy-page {
  width: min(100% - 32px, 920px);
  margin: 0 auto;
  padding: 2rem 1rem 3rem;
  color: var(--dcp-text);
  text-align: center;
}

.policy-page h1,
.policy-page h2,
.policy-page p,
.policy-page li {
  text-align: center;
}

.policy-page p,
.policy-page li {
  line-height: 1.65;
}

.policy-page table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0 1.5rem;
}

.policy-page th,
.policy-page td {
  padding: 0.8rem;
  border: 1px solid var(--dcp-border);
  text-align: left;
  vertical-align: top;
}

.policy-page th {
  background: var(--dcp-muted);
  color: var(--dcp-blue-dark);
}

@media (max-width: 560px) {
  .site-nav a {
    flex: 1 1 100%;
  }

  .footer-legal {
    flex-direction: column;
    align-items: center;
  }
}
