﻿:root {
  --bg-dark: #0b1f42;
  --bg-deep: #052f5f;
  --teal: #0b7f8f;
  --headline: #8f1636;
  --text: #1a2332;
  --line: #dbe1e8;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background: #f5f7fb;
  line-height: 1.6;
}

.container {
  width: min(1160px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(9, 22, 50, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 70px;
}

.logo {
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  margin-right: auto;
}

.menu {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.menu a {
  color: #e9f2ff;
  text-decoration: none;
  padding: 0.5rem 0.65rem;
  border-radius: 8px;
  font-size: 0.9rem;
  display: inline-block;
}

.menu a:hover,
.menu a.active { background: rgba(255, 255, 255, 0.13); }

.hero-banner-section {
  background: #fff;
  padding: 0.9rem 0 0;
}

.hero-banner-image {
  width: min(100%, 1000px);
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 14px;
  border: 1px solid var(--line);
  box-shadow: 0 14px 34px rgba(8, 24, 55, 0.14);
}

.hero {
  background:
    linear-gradient(120deg, rgba(6, 34, 77, 0.96), rgba(11, 120, 136, 0.88)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.07) 0 2px, transparent 2px 36px);
  color: #fff;
  padding: 4.5rem 0 3rem;
}

.hero-home { padding: 5rem 0 3.4rem; }

.hero-content h1 {
  margin: 0;
  font-size: clamp(2rem, 4.8vw, 3.8rem);
  line-height: 1.05;
}

.hero-content h2 {
  margin: 0.55rem 0 0;
  color: #9E0022;
  font-size: clamp(1.35rem, 3vw, 2.2rem);
  text-shadow: 0 1px 0 rgba(255,255,255,0.35), -1px -1px 0 rgba(6,29,60,0.9), 1px -1px 0 rgba(6,29,60,0.9), -1px 1px 0 rgba(6,29,60,0.9), 1px 1px 0 rgba(6,29,60,0.9), 0 4px 10px rgba(0,0,0,0.28);
  -webkit-text-stroke: 0.7px rgba(6,29,60,0.85);
  display: block;
  width: fit-content;
  background: transparent;
  padding: 0;
  border-radius: 0;
}

.hero-kicker { margin: 0 0 0.5rem; font-weight: 600; }
.hero-question { font-size: clamp(1.35rem, 3vw, 2.2rem); max-width: 900px; margin: 0.55rem 0 0; color: #9E0022; font-weight: 700; text-shadow: 0 1px 0 rgba(255,255,255,0.35), -1px -1px 0 rgba(6,29,60,0.9), 1px -1px 0 rgba(6,29,60,0.9), -1px 1px 0 rgba(6,29,60,0.9), 1px 1px 0 rgba(6,29,60,0.9), 0 4px 10px rgba(0,0,0,0.28); -webkit-text-stroke: 0.7px rgba(6,29,60,0.85); display: block; width: fit-content; background: transparent; padding: 0; border-radius: 0; }
.hero-meta { font-weight: 700; font-size: 1.05rem; }
.compact h1 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }

.content-section { padding: 2.5rem 0; }
.content-section.light { background: #fff; }
.section-title { margin-top: 0; color: var(--headline); }

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.8rem;
}

.card {
  background: linear-gradient(160deg, #f9fbff, #f0f5ff);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1rem;
  font-weight: 600;
}

.prose {
  background: #fff;
  border-radius: 14px;
  padding: clamp(1rem, 2vw, 2rem);
  border: 1px solid var(--line);
}

.prose h1,
.prose h2,
.prose h3 { color: var(--headline); }

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.1rem;
}

.btn {
  border: 1px solid #2f5070;
  background: #fff;
  color: #16345a;
  text-decoration: none;
  border-radius: 10px;
  padding: 0.55rem 1rem;
  cursor: pointer;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn.primary {
  background: #8f1636;
  border-color: #8f1636;
  color: #fff;
}

.disabled-link {
  opacity: 0.55;
  pointer-events: none;
}

.pdf-frame {
  width: 100%;
  min-height: 75vh;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.empty-state {
  background: #fff;
  border: 1px dashed #88a2c3;
  border-radius: 12px;
  padding: 1rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.1rem 0;
  background: #fff;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-grid a {
  color: #16345a;
  text-decoration: none;
  font-weight: 600;
}

.menu-toggle,
.menu-button { display: none; }

@media (max-width: 980px) {
  .fees-table,
  .fees-table tbody,
  .fees-table tr,
  .fees-table th,
  .fees-table td {
    display: block;
    width: 100%;
  }
  .fees-table tr {
    border-top: 1px solid #e7edf4;
  }
  .fees-table tr:first-child {
    border-top: 0;
  }
  .fees-table th,
  .fees-table td {
    border-left: 0;
    border-right: 0;
  }
  .fees-table .fees-title {
    width: 100%;
  }
  .menu-button {
    display: inline-block;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: 8px;
    padding: 0.35rem 0.6rem;
    cursor: pointer;
  }

  nav { width: 100%; }
  .menu { display: none; width: 100%; padding-bottom: 0.8rem; }
  .menu li { width: 100%; }
  .menu a { width: 100%; text-align: left; }
  .menu-toggle:checked ~ nav .menu { display: flex; flex-direction: column; }
}


.fees-wrap {
  display: grid;
  gap: 1rem;
}
.fees-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  box-shadow: 0 8px 24px rgba(7, 30, 66, 0.07);
}
.fees-table {
  width: 100%;
  border-collapse: collapse;
}
.fees-table th,
.fees-table td {
  border: 1px solid #e7edf4;
  padding: 0.95rem 0.9rem;
  text-align: left;
  vertical-align: top;
}
.fees-table th {
  background: #f2f6fb;
  color: #0f2c4a;
  font-weight: 700;
}
.fees-table .fees-title {
  width: 65%;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.fees-table td strong {
  color: var(--headline);
  font-size: 1.1rem;
}



.themes-intro,
.themes-note {
  font-size: 1.05rem;
  color: #21364f;
}

.themes-note {
  margin-top: 1.2rem;
  padding: 0.9rem 1rem;
  background: #f4f8ff;
  border-left: 4px solid #9E0022;
  border-radius: 10px;
}

.themes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.theme-card {
  border: 1px solid #d8e2ee;
  border-radius: 14px;
  padding: 1rem;
  background: linear-gradient(165deg, #ffffff 0%, #f7fbff 100%);
  box-shadow: 0 10px 24px rgba(10, 38, 70, 0.08);
}

.theme-card h2 {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.08rem;
  line-height: 1.35;
  margin: 0 0 0.75rem;
  color: #12385f;
}

.theme-no {
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #9E0022;
  color: #fff;
  font-weight: 800;
  font-size: 0.95rem;
  flex: 0 0 1.9rem;
}

.theme-card ul {
  margin: 0;
  padding-left: 1.05rem;
}

.theme-card li {
  margin: 0.36rem 0;
}


.main-theme-hero {
  margin: 0.8rem 0 1rem;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  border: 1px solid #cfdceb;
  background: linear-gradient(135deg, #ffffff 0%, #f5f9ff 55%, #eef6ff 100%);
  box-shadow: 0 10px 24px rgba(10, 38, 70, 0.1);
}

.main-theme-label {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: #9E0022;
  border-radius: 999px;
  padding: 0.28rem 0.62rem;
}

.main-theme-hero h3 {
  margin: 0.58rem 0 0.45rem;
  font-size: clamp(1.25rem, 2.2vw, 1.8rem);
  line-height: 1.2;
  color: #9E0022;
}

.main-theme-hero p {
  margin: 0;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 600;
  color: #193754;
}
