@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&family=Source+Sans+Pro:wght@300;400;600;700&display=swap');

:root {
  --primary: #264653;
  --secondary: #2A9D8F;
  --accent-gold: #E9C46A;
  --accent-orange: #F4A261;
  --bg-light: #F8F8F8;
  --border-light: #D3D3D3;
  --white: #ffffff;
  --text-dark: #1a2e36;
  --text-muted: #5a6a72;
  --container-max: 1280px;
  --spacing-sm: 24px;
  --spacing-md: 48px;
  --spacing-lg: 72px;
  --spacing-xl: 96px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Source Sans Pro', sans-serif;
  background-color: var(--bg-light);
  color: var(--text-dark);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Lato', sans-serif;
  line-height: 1.25;
  color: var(--primary);
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 700;
}

p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: var(--secondary);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--accent-gold);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  padding-left: 1.5rem;
}

li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad {
  padding: var(--spacing-lg) 0;
}

.section-pad-lg {
  padding: var(--spacing-xl) 0;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--primary);
  border-bottom: 2px solid rgba(42, 157, 143, 0.3);
  padding: 0;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
}

.navbar-brand {
  font-family: 'Lato', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--white) !important;
  letter-spacing: 0.04em;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.brand-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent-gold);
  display: inline-block;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.navbar-nav a {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(248,248,248,0.85);
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 3px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.navbar-nav a:hover,
.navbar-nav a.active {
  color: var(--accent-gold);
  background-color: rgba(233, 196, 106, 0.08);
}

.navbar-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(248,248,248,0.3);
  color: var(--white);
  padding: 6px 10px;
  cursor: pointer;
  border-radius: 3px;
  font-size: 1.1rem;
}

.mobile-menu {
  display: none;
  background-color: var(--primary);
  border-top: 1px solid rgba(42,157,143,0.2);
}

.mobile-menu.open {
  display: block;
}

.mobile-menu ul {
  list-style: none;
  padding: 12px 24px;
  margin: 0;
}

.mobile-menu ul li a {
  display: block;
  padding: 10px 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(248,248,248,0.85);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s ease;
}

.mobile-menu ul li a:hover {
  color: var(--accent-gold);
}

.page-offset {
  padding-top: 64px;
}

.hero-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--primary);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.45;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(38,70,83,0.92) 0%, rgba(38,70,83,0.6) 60%, rgba(42,157,143,0.2) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 80px 24px;
}

.hero-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-gold);
  border-left: 3px solid var(--accent-gold);
  padding-left: 12px;
  margin-bottom: 24px;
}

.hero-content h1 {
  color: var(--white);
  max-width: 720px;
  margin-bottom: 24px;
}

.hero-content p {
  color: rgba(248,248,248,0.82);
  font-size: 1.15rem;
  max-width: 580px;
  margin-bottom: 36px;
  line-height: 1.75;
}

.hero-cta {
  display: inline-block;
  padding: 14px 32px;
  background-color: transparent;
  border: 2px solid var(--accent-gold);
  color: var(--accent-gold);
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
  cursor: pointer;
}

.hero-cta:hover {
  background-color: var(--accent-gold);
  color: var(--primary);
}

.edu-notice {
  background-color: var(--primary);
  color: var(--white);
  text-align: center;
  padding: 12px 24px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 2px solid var(--secondary);
}

.edu-notice span {
  color: var(--accent-gold);
}

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

.section-bg-light {
  background-color: var(--bg-light);
}

.section-bg-primary {
  background-color: var(--primary);
}

.section-bg-secondary {
  background-color: var(--secondary);
}

.section-header {
  margin-bottom: var(--spacing-md);
}

.section-header.centered {
  text-align: center;
}

.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 12px;
}

.section-divider {
  width: 48px;
  height: 3px;
  background-color: var(--accent-gold);
  margin-top: 16px;
}

.section-divider.centered {
  margin: 16px auto 0;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-md);
  align-items: center;
}

.two-col.reversed {
  direction: rtl;
}

.two-col.reversed > * {
  direction: ltr;
}

.two-col-text {
  padding: var(--spacing-sm) 0;
}

.col-img-wrap {
  position: relative;
  overflow: hidden;
}

.col-img-wrap img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.col-img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 60px;
  background-color: var(--accent-gold);
  opacity: 0.6;
  clip-path: polygon(0 100%, 100% 100%, 0 0);
}

.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-sm);
}

.info-card {
  background-color: var(--white);
  border-top: 3px solid var(--secondary);
  padding: 28px 24px;
  position: relative;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.info-card:hover {
  box-shadow: 0 8px 32px rgba(38,70,83,0.12);
  transform: translateY(-2px);
}

.info-card-number {
  font-family: 'Lato', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--accent-gold);
  line-height: 1;
  margin-bottom: 12px;
  opacity: 0.8;
}

.info-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--primary);
}

.info-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

.info-card-img {
  background-color: var(--white);
  overflow: hidden;
  position: relative;
  transition: box-shadow 0.2s ease;
}

.info-card-img:hover {
  box-shadow: 0 8px 32px rgba(38,70,83,0.14);
}

.info-card-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.info-card-img:hover img {
  transform: scale(1.03);
}

.info-card-img-body {
  padding: 20px 20px 24px;
  border-top: 3px solid var(--accent-gold);
}

.info-card-img-body h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.info-card-img-body p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
}

.accent-block {
  background-color: var(--secondary);
  padding: var(--spacing-lg) 0;
}

.accent-block-quote {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 0 24px;
}

.accent-block-quote p {
  font-family: 'Lato', sans-serif;
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.6;
  margin: 0;
}

.accent-block-quote cite {
  display: block;
  margin-top: 16px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-gold);
  font-style: normal;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background-color: var(--border-light);
}

.pillar-item {
  background-color: var(--white);
  padding: 32px 24px;
  text-align: center;
  transition: background-color 0.2s ease;
}

.pillar-item:hover {
  background-color: var(--primary);
}

.pillar-item:hover h3,
.pillar-item:hover p {
  color: var(--white);
}

.pillar-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  border: 2px solid var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--secondary);
  transition: border-color 0.2s ease, color 0.2s ease;
}

.pillar-item:hover .pillar-icon {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

.pillar-item h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  transition: color 0.2s ease;
}

.pillar-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
  transition: color 0.2s ease;
}

.stat-strip {
  background-color: var(--primary);
  padding: 40px 0;
}

.stat-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background-color: rgba(255,255,255,0.1);
}

.stat-item {
  background-color: var(--primary);
  padding: 24px 20px;
  text-align: center;
}

.stat-number {
  font-family: 'Lato', sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--accent-gold);
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(248,248,248,0.7);
  margin-top: 6px;
  display: block;
}

.full-img-section {
  position: relative;
  overflow: hidden;
}

.full-img-section img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.full-img-section .img-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(38,70,83,0.88));
  padding: 40px 24px 24px;
}

.full-img-section .img-caption p {
  color: rgba(248,248,248,0.9);
  font-size: 0.875rem;
  margin: 0;
  max-width: var(--container-max);
  margin: 0 auto;
}

.info-box {
  border-left: 4px solid var(--secondary);
  background-color: rgba(42,157,143,0.06);
  padding: 20px 24px;
  margin: 24px 0;
}

.info-box.warning {
  border-left-color: var(--accent-gold);
  background-color: rgba(233,196,106,0.08);
}

.info-box.notice {
  border-left-color: var(--accent-orange);
  background-color: rgba(244,162,97,0.07);
}

.info-box p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.info-box strong {
  color: var(--primary);
}

.disclaimer-box {
  background-color: var(--primary);
  color: var(--white);
  padding: 28px 32px;
  margin-bottom: 32px;
  position: relative;
  overflow: hidden;
}

.disclaimer-box::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background-color: var(--secondary);
  opacity: 0.3;
  border-radius: 0 0 0 80px;
}

.disclaimer-box p {
  color: rgba(248,248,248,0.9);
  font-size: 0.875rem;
  margin: 0;
}

.disclaimer-box strong {
  color: var(--accent-gold);
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.text-block {
  max-width: 800px;
}

.text-block.centered {
  margin: 0 auto;
  text-align: center;
}

.keyword-tag {
  display: inline-block;
  padding: 4px 12px;
  background-color: rgba(42,157,143,0.1);
  color: var(--secondary);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 4px 4px 4px 0;
  border: 1px solid rgba(42,157,143,0.2);
}

.content-list {
  list-style: none;
  padding: 0;
}

.content-list li {
  padding: 12px 0 12px 28px;
  border-bottom: 1px solid var(--border-light);
  position: relative;
  font-size: 0.95rem;
  line-height: 1.6;
}

.content-list li:last-child {
  border-bottom: none;
}

.content-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 2px;
  background-color: var(--accent-gold);
}

.accordion-item {
  border-bottom: 1px solid var(--border-light);
  background-color: var(--white);
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.2s ease;
}

.accordion-header:hover {
  background-color: rgba(38,70,83,0.04);
}

.accordion-header h3 {
  font-size: 1rem;
  color: var(--primary);
  margin: 0;
  font-weight: 600;
}

.accordion-icon {
  width: 20px;
  height: 20px;
  border: 2px solid var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--secondary);
  flex-shrink: 0;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.accordion-item.open .accordion-icon {
  transform: rotate(45deg);
  background-color: var(--secondary);
  color: var(--white);
}

.accordion-body {
  display: none;
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  border-top: 1px solid rgba(42,157,143,0.15);
}

.accordion-body.open {
  display: block;
}

.timeline {
  position: relative;
  padding-left: 32px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--secondary), var(--accent-gold));
}

.timeline-item {
  position: relative;
  margin-bottom: 32px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -26px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--accent-gold);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--accent-gold);
}

.timeline-item h3 {
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 6px;
}

.timeline-item p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
}

.table-responsive {
  overflow-x: auto;
}

table.styled-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

table.styled-table thead tr {
  background-color: var(--primary);
  color: var(--white);
}

table.styled-table thead th {
  padding: 14px 16px;
  text-align: left;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

table.styled-table tbody tr {
  border-bottom: 1px solid var(--border-light);
  transition: background-color 0.15s ease;
}

table.styled-table tbody tr:hover {
  background-color: rgba(42,157,143,0.05);
}

table.styled-table tbody td {
  padding: 14px 16px;
  color: var(--text-muted);
  vertical-align: top;
}

table.styled-table tbody td:first-child {
  color: var(--primary);
  font-weight: 600;
}

.glossary-rail {
  background-color: var(--white);
  border: 1px solid var(--border-light);
  padding: 24px;
}

.glossary-rail h3 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border-light);
}

.glossary-term {
  margin-bottom: 16px;
}

.glossary-term dt {
  font-weight: 700;
  color: var(--primary);
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.glossary-term dd {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
  padding-left: 12px;
  border-left: 2px solid var(--accent-gold);
}

.page-hero-sm {
  background-color: var(--primary);
  padding: 60px 0 48px;
  position: relative;
  overflow: hidden;
}

.page-hero-sm::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  width: 300px;
  height: 300px;
  background-color: var(--secondary);
  opacity: 0.08;
  border-radius: 50%;
  transform: translate(30%, 30%);
}

.page-hero-sm h1 {
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.page-hero-sm .hero-label {
  margin-bottom: 16px;
}

.page-hero-sm p {
  color: rgba(248,248,248,0.75);
  font-size: 1rem;
  max-width: 600px;
}

.breadcrumb-bar {
  background-color: var(--white);
  border-bottom: 1px solid var(--border-light);
  padding: 10px 0;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.8rem;
}

.breadcrumb-list li {
  color: var(--text-muted);
  margin: 0;
}

.breadcrumb-list li a {
  color: var(--secondary);
}

.breadcrumb-list li::after {
  content: '/';
  margin-left: 8px;
  opacity: 0.4;
}

.breadcrumb-list li:last-child::after {
  display: none;
}

.contact-form-wrap {
  background-color: var(--white);
  padding: 40px;
  border-top: 4px solid var(--secondary);
}

.form-field {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 6px;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-light);
  background-color: var(--bg-light);
  color: var(--text-dark);
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s ease;
}

.form-input:focus {
  border-color: var(--secondary);
  background-color: var(--white);
}

textarea.form-input {
  resize: vertical;
  min-height: 140px;
}

.btn-submit {
  display: inline-block;
  padding: 14px 36px;
  background-color: var(--primary);
  color: var(--white);
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.btn-submit:hover {
  background-color: var(--secondary);
}

.btn-link {
  display: inline-block;
  padding: 12px 28px;
  border: 2px solid var(--primary);
  color: var(--primary);
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.btn-link:hover {
  background-color: var(--primary);
  color: var(--white);
}

.btn-link.secondary {
  border-color: var(--secondary);
  color: var(--secondary);
}

.btn-link.secondary:hover {
  background-color: var(--secondary);
  color: var(--white);
}

.btn-link.gold {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

.btn-link.gold:hover {
  background-color: var(--accent-gold);
  color: var(--primary);
}

.contact-info-list {
  list-style: none;
  padding: 0;
}

.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-light);
  margin: 0;
}

.contact-info-list li:last-child {
  border-bottom: none;
}

.contact-info-icon {
  width: 36px;
  height: 36px;
  background-color: var(--primary);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.contact-info-text strong {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 2px;
}

.contact-info-text span {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.policy-section h2 {
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 16px;
  padding-top: 32px;
  border-top: 1px solid var(--border-light);
}

.policy-section h2:first-child {
  border-top: none;
  padding-top: 0;
}

.policy-section p,
.policy-section li {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.policy-section ul,
.policy-section ol {
  margin-bottom: 16px;
}

.numbered-clause {
  counter-reset: clause;
}

.numbered-clause > li {
  counter-increment: clause;
  list-style: none;
  padding-left: 0;
}

.numbered-clause > li::before {
  content: counter(clause) ".";
  font-weight: 700;
  color: var(--primary);
  margin-right: 8px;
}

.matrix-table {
  width: 100%;
  border-collapse: collapse;
}

.matrix-table th,
.matrix-table td {
  padding: 12px 16px;
  border: 1px solid var(--border-light);
  font-size: 0.875rem;
}

.matrix-table thead th {
  background-color: var(--secondary);
  color: var(--white);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.matrix-table tbody tr:nth-child(even) {
  background-color: rgba(42,157,143,0.04);
}

.matrix-table td:first-child {
  font-weight: 600;
  color: var(--primary);
}

.thank-you-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  background-color: var(--primary);
}

.thank-you-inner {
  text-align: center;
  padding: var(--spacing-xl) 24px;
  max-width: 600px;
  margin: 0 auto;
}

.thank-you-icon {
  width: 80px;
  height: 80px;
  border: 3px solid var(--accent-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  font-size: 2rem;
  color: var(--accent-gold);
}

.thank-you-inner h1 {
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 16px;
}

.thank-you-inner p {
  color: rgba(248,248,248,0.75);
  font-size: 1rem;
  margin-bottom: 32px;
}

.footer {
  background-color: var(--text-dark);
  color: rgba(248,248,248,0.75);
  padding: var(--spacing-lg) 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-md);
}

.footer-brand-name {
  font-family: 'Lato', sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: 12px;
  display: block;
}

.footer p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(248,248,248,0.6);
  margin-bottom: 0;
}

.footer-edu-notice {
  display: inline-block;
  margin-top: 16px;
  padding: 8px 16px;
  background-color: rgba(233,196,106,0.1);
  border: 1px solid rgba(233,196,106,0.3);
  color: var(--accent-gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer h4 {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(248,248,248,0.4);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-nav {
  list-style: none;
  padding: 0;
}

.footer-nav li {
  margin-bottom: 8px;
}

.footer-nav a {
  font-size: 0.875rem;
  color: rgba(248,248,248,0.65);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: var(--accent-gold);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.85rem;
}

.footer-contact-item span:first-child {
  color: var(--secondary);
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item span:last-child {
  color: rgba(248,248,248,0.65);
  line-height: 1.5;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(248,248,248,0.35);
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 16px;
}

.footer-bottom-links a {
  font-size: 0.78rem;
  color: rgba(248,248,248,0.35);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
  color: var(--accent-gold);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background-color: var(--text-dark);
  border-top: 3px solid var(--secondary);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.cookie-banner p {
  font-size: 0.85rem;
  color: rgba(248,248,248,0.8);
  margin: 0;
  flex: 1;
  min-width: 200px;
}

.cookie-banner-btns {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 8px 18px;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.cookie-btn-accept {
  background-color: var(--secondary);
  color: var(--white);
}

.cookie-btn-accept:hover {
  background-color: var(--accent-gold);
  color: var(--primary);
}

.cookie-btn-reject {
  background-color: transparent;
  color: rgba(248,248,248,0.65);
  border: 1px solid rgba(248,248,248,0.2);
}

.cookie-btn-reject:hover {
  background-color: rgba(255,255,255,0.08);
  color: var(--white);
}

.cookie-btn-policy {
  background-color: transparent;
  color: var(--accent-gold);
  border: 1px solid rgba(233,196,106,0.3);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.cookie-btn-policy:hover {
  background-color: rgba(233,196,106,0.1);
}

.section-rule {
  height: 1px;
  background: linear-gradient(to right, var(--secondary), transparent);
  margin: 0;
  border: none;
}

.section-rule-full {
  height: 4px;
  background-color: var(--primary);
  border: none;
  margin: 0;
}

.highlight-text {
  color: var(--secondary);
  font-weight: 700;
}

.gold-text {
  color: var(--accent-gold);
}

.white-text {
  color: var(--white);
}

.further-reading {
  background-color: var(--white);
  border: 1px solid var(--border-light);
  border-left: 4px solid var(--secondary);
  padding: 24px 28px;
}

.further-reading h3 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 14px;
}

.further-reading ul {
  list-style: none;
  padding: 0;
}

.further-reading ul li {
  margin-bottom: 8px;
  border-bottom: none;
}

.further-reading ul li a {
  font-size: 0.9rem;
  color: var(--primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s ease;
}

.further-reading ul li a::before {
  content: '';
  width: 16px;
  height: 1px;
  background-color: var(--accent-gold);
  flex-shrink: 0;
}

.further-reading ul li a:hover {
  color: var(--secondary);
}

.important-notice {
  background-color: rgba(244,162,97,0.08);
  border: 2px solid var(--accent-orange);
  padding: 28px 32px;
  position: relative;
}

.important-notice-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-orange);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.important-notice-label::before {
  content: '';
  width: 20px;
  height: 2px;
  background-color: var(--accent-orange);
}

.important-notice p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.7;
}

.point-list {
  counter-reset: point;
  list-style: none;
  padding: 0;
}

.point-list li {
  counter-increment: point;
  padding: 16px 16px 16px 48px;
  border-bottom: 1px solid var(--border-light);
  position: relative;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.point-list li:last-child {
  border-bottom: none;
}

.point-list li::before {
  content: counter(point, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 16px;
  font-family: 'Lato', sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--accent-gold);
  line-height: 1;
}

@media (max-width: 1024px) {
  .three-col {
    grid-template-columns: repeat(2, 1fr);
  }
  .pillar-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-strip-inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .navbar-nav {
    display: none;
  }
  .navbar-toggle {
    display: block;
  }
  .two-col {
    grid-template-columns: 1fr;
  }
  .two-col.reversed {
    direction: ltr;
  }
  .three-col {
    grid-template-columns: 1fr;
  }
  .pillar-grid {
    grid-template-columns: 1fr;
  }
  .stat-strip-inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-section {
    min-height: 70vh;
  }
  .col-img-wrap img {
    height: 280px;
  }
  .contact-form-wrap {
    padding: 24px;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .stat-strip-inner {
    grid-template-columns: 1fr 1fr;
  }
  h1 {
    font-size: 1.9rem;
  }
  h2 {
    font-size: 1.4rem;
  }
}
