:root {
  color-scheme: light;
  --page: #f3f7f6;
  --surface: #ffffff;
  --ink: #10282d;
  --muted: #587075;
  --brand: #176b60;
  --brand-dark: #0e4f49;
  --mint: #b9f3df;
  --blue: #2d68d8;
  --coral: #c95445;
  --line: #d7e2df;
  --max: 940px;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--page);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
}

body {
  margin: 0;
}

a {
  color: var(--brand-dark);
  text-underline-offset: 3px;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}

.site-header {
  align-items: center;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  min-height: 72px;
  padding: 12px max(22px, calc((100vw - var(--max)) / 2));
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand {
  align-items: center;
  color: var(--ink);
  display: inline-flex;
  font-size: 20px;
  font-weight: 750;
  gap: 11px;
  text-decoration: none;
}

.brand img {
  border-radius: 8px;
  display: block;
}

nav {
  display: flex;
  gap: 22px;
}

nav a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

nav a[aria-current="page"],
nav a:hover {
  color: var(--brand-dark);
}

.intro {
  background: #0e3438;
  color: #effff9;
  min-height: 400px;
  padding: 76px 22px 68px;
}

.intro-inner,
.content,
.document {
  margin: 0 auto;
  max-width: var(--max);
}

.intro-inner {
  max-width: 780px;
}

.eyebrow {
  color: var(--brand);
  font-size: 13px;
  font-weight: 800;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.intro .eyebrow {
  color: var(--mint);
}

h1,
h2,
h3 {
  letter-spacing: 0;
  line-height: 1.18;
  margin-top: 0;
}

h1 {
  font-size: clamp(38px, 7vw, 62px);
  margin-bottom: 22px;
  max-width: 760px;
}

h2 {
  font-size: 30px;
  margin-bottom: 18px;
}

h3 {
  font-size: 19px;
  margin-bottom: 8px;
}

.lede {
  color: #cbe2df;
  font-size: 19px;
  margin: 0;
  max-width: 700px;
}

.section {
  padding: 68px 22px;
}

.section-white {
  background: var(--surface);
}

.section-tint {
  background: #e8f1ef;
}

.section-heading {
  margin-bottom: 28px;
}

.resource-list {
  border-top: 1px solid var(--line);
}

.resource-item {
  align-items: center;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding: 24px 4px;
  text-decoration: none;
}

.resource-item strong,
.resource-item small {
  display: block;
}

.resource-item strong {
  font-size: 18px;
}

.resource-item small {
  color: var(--muted);
  font-size: 14px;
  margin-top: 2px;
}

.resource-item:hover strong,
.resource-item:hover .arrow {
  color: var(--brand);
}

.arrow {
  color: var(--blue);
  font-size: 24px;
}

.split {
  align-items: start;
  display: grid;
  gap: 56px;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.split p:last-child {
  color: var(--muted);
  margin: 4px 0 0;
}

.document-header {
  background: #0e3438;
  color: #effff9;
  padding: 58px 22px 48px;
}

.document-header .document {
  max-width: 800px;
}

.document-header h1 {
  font-size: clamp(34px, 6vw, 52px);
  margin-bottom: 12px;
}

.updated {
  color: #bcd7d2;
  font-size: 14px;
  margin: 0;
}

.document-body {
  background: var(--surface);
  padding: 52px 22px 76px;
}

.document-body .document {
  max-width: 800px;
}

.document section + section {
  border-top: 1px solid var(--line);
  margin-top: 38px;
  padding-top: 38px;
}

.document p,
.document li {
  color: #344e53;
}

.document ul,
.document ol {
  padding-left: 23px;
}

.document li + li {
  margin-top: 8px;
}

.notice {
  background: #e9f7f2;
  border-left: 4px solid var(--brand);
  border-radius: 0 8px 8px 0;
  margin: 26px 0;
  padding: 18px 20px;
}

.notice.warning {
  background: #fff3ef;
  border-left-color: var(--coral);
}

.notice p {
  margin: 0;
}

.data-table-wrap {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow-x: auto;
}

table {
  border-collapse: collapse;
  min-width: 690px;
  width: 100%;
}

th,
td {
  border-bottom: 1px solid var(--line);
  padding: 15px 16px;
  text-align: left;
  vertical-align: top;
}

th {
  background: #edf4f2;
  color: var(--ink);
  font-size: 13px;
}

td {
  color: #344e53;
  font-size: 14px;
}

tr:last-child td {
  border-bottom: 0;
}

.yes {
  color: var(--brand-dark);
  font-weight: 750;
}

.cta {
  align-items: center;
  background: var(--brand);
  border-radius: 6px;
  color: #ffffff;
  display: inline-flex;
  font-weight: 750;
  margin-top: 8px;
  min-height: 46px;
  padding: 10px 18px;
  text-decoration: none;
}

.cta:hover {
  background: var(--brand-dark);
}

.meta-list {
  display: grid;
  gap: 10px;
  grid-template-columns: 150px minmax(0, 1fr);
  margin: 22px 0;
}

.meta-list dt {
  color: var(--muted);
  font-weight: 650;
}

.meta-list dd {
  margin: 0;
}

.turkish-summary {
  background: #f3f6fb;
  border: 1px solid #dce5f5;
  border-radius: 8px;
  padding: 24px;
}

footer {
  align-items: center;
  background: #091f23;
  color: #bcd1ce;
  display: flex;
  font-size: 14px;
  justify-content: space-between;
  min-height: 88px;
  padding: 22px max(22px, calc((100vw - var(--max)) / 2));
}

footer a {
  color: #d9fff2;
}

@media (max-width: 700px) {
  .site-header {
    align-items: flex-start;
    gap: 14px;
    position: static;
  }

  nav {
    flex-wrap: wrap;
    gap: 7px 16px;
    justify-content: flex-end;
  }

  .intro {
    min-height: 420px;
    padding-top: 62px;
  }

  .split {
    gap: 18px;
    grid-template-columns: 1fr;
  }

  .meta-list {
    grid-template-columns: 1fr;
  }

  .meta-list dt {
    margin-top: 6px;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 460px) {
  .site-header {
    display: block;
  }

  nav {
    justify-content: flex-start;
    margin-top: 12px;
  }

  h1 {
    font-size: 37px;
  }

  .resource-item {
    align-items: flex-start;
  }
}
