:root {
    /* PALETTE: Institutional Authority (matches new skin) */
    --navy: #0f172a;
    --navy-light: #1e293b;
    --blue: #2563eb;
    --blue-subtle: #eff6ff;
    --green: #10b981;
    --slate: #64748b;
    --slate-light: #94a3b8;
    --border: #e2e8f0;
    --white: #ffffff;
    --bg-wash: #f8fafc;
    --amber: #d97706;
    --amber-bg: #fffbeb;

    /* SHADOWS */
    --shadow-input: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-card: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-float: 0 20px 25px -5px rgba(15, 23, 42, 0.08), 0 8px 10px -6px rgba(15, 23, 42, 0.03);
  }

  * { box-sizing: border-box; }
  body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: var(--white);
    color: var(--navy);
    margin: 0;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
  }
  a { color: inherit; text-decoration: none; }

  /* NAV (matches new skin) */
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 5%;
    background: rgba(255,255,255,0.98);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .brand { display:flex; flex-direction:column; gap:2px; }
  .logo {
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: -0.01em;
  }
  .logo a { color: inherit; text-decoration: none; }
  .logo span { color: var(--navy); opacity: 0.9; }
  .dre-id {
    font-size: 11px;
    color: var(--slate);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.02em;
  }
  .nav-actions { display:flex; gap:24px; align-items:center; }
  .link {
    color: var(--slate);
    font-weight: 500;
    font-size: 13px;
    transition: color 0.2s;
  }
  .link:hover { color: var(--navy); }
  .btn-login {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 13px;
    color: var(--navy);
  }

  /* PAGE WRAP */
  .page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 44px 5% 80px;
  }

  /* HERO */
  .hero {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: start;
    padding: 34px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: linear-gradient(180deg, #ffffff 0%, var(--bg-wash) 100%);
    box-shadow: var(--shadow-card);
  }
  .hero h1 {
    font-weight: 800;
    font-size: 2.25rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin: 0 0 10px 0;
  }
  .hero p {
    margin: 0;
    color: var(--slate);
    font-size: 1rem;
    line-height: 1.6;
  }

  .hero-card {
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--white);
    box-shadow: var(--shadow-input);
    padding: 18px;
  }
  .hero-card .kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    color: var(--blue);
    background: var(--blue-subtle);
    border: 1px solid #bfdbfe;
    padding: 6px 10px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
  }
  .hero-card .small {
    margin-top: 10px;
    font-size: 13px;
    color: var(--slate);
    line-height: 1.55;
  }

  /* SEARCH */
  .search-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 26px 0 24px;
  }
  .search {
    position: relative;
    max-width: 680px;
  }
  .search input {
    width: 100%;
    padding: 14px 14px 14px 44px;
    border-radius: 10px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-input);
    font-size: 15px;
    outline: none;
    transition: all 0.2s;
    color: var(--navy);
    font-weight: 500;
    background: var(--white);
  }
  .search input:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(37,99,235,0.10);
  }
  .search svg {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: var(--slate-light);
  }
  .search-meta {
    font-size: 13px;
    color: var(--slate);
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
    max-width: 680px;
  }
  .pill {
    font-size: 11px;
    font-weight: 800;
    color: var(--navy);
    background: #f1f5f9;
    border: 1px solid var(--border);
    padding: 5px 10px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
  }

  /* FAQ GRID */
   @media (max-width: 768px) {
   .faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    align-items: start;
  } 
   }

  /* ACCORDION ITEM */
  .faq-item {
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--white);
    box-shadow: var(--shadow-input);
    overflow: hidden;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
  }
  .faq-item:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-card);
  }

  .faq-button {
    width: 100%;
    border: none;
    background: transparent;
    padding: 16px 16px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    cursor: pointer;
    text-align: left;
  }
  .faq-q {
    font-weight: 800;
    font-size: 15px;
    line-height: 1.35;
    color: var(--navy);
    margin: 0;
  }
  .faq-icon {
    flex: 0 0 auto;
    width: 32px;
    height: 32px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: #f8fafc;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--slate);
    transition: all 0.2s ease;
  }
  .faq-icon svg { width: 16px; height: 16px; }

  .faq-panel {
    padding: 0 16px 16px;
    border-top: 1px solid var(--border);
    display: none;
  }
  .faq-a {
    margin: 12px 0 0;
    color: var(--slate);
    font-size: 15px;
    line-height: 1.65;
  }
  .faq-a ul, .faq-a ol { margin: 10px 0 0 18px; }
  .faq-a li { margin: 6px 0; }
  .faq-a a { color: var(--blue); font-weight: 700; }

  .faq-item[data-open="true"] .faq-panel { display: block; }
  .faq-item[data-open="true"] .faq-icon {
    background: var(--blue-subtle);
    border-color: #bfdbfe;
    color: var(--blue);
  }
  .faq-item[data-open="true"] .faq-icon .plus { display: none; }
  .faq-item[data-open="false"] .faq-icon .minus { display: none; }

  /* EMPTY STATE */
  .empty {
    display: none;
    margin-top: 18px;
    padding: 18px;
    border: 1px dashed var(--border);
    border-radius: 14px;
    color: var(--slate);
    background: var(--bg-wash);
    max-width: 680px;
  }

  /* FOOTER (matches new skin structure) */
  footer { padding: 40px 20px; }
  footer .footer-inner {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    border-top: 1px solid var(--border);
    padding-top: 40px;
  }
  footer .footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: left;
    margin-bottom: 40px;
  }
  footer a {
    display: block;
    font-size: 13px;
    color: var(--slate);
    margin-bottom: 8px;
    text-decoration: none;
  }
  footer a:hover { color: var(--navy); }
  footer strong {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: var(--navy);
    letter-spacing: 0.02em;
  }
  footer p { font-size: 11px; color: var(--slate-light); margin-top: 20px; }

  /* RESPONSIVE */
  @media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; }
    footer .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  }
  @media (max-width: 768px) {
    .faq-grid { grid-template-columns: 1fr; }
    .page { padding: 32px 5% 70px; }
    .hero { padding: 22px; }
    .hero h1 { font-size: 2rem; }
  }
  @media (max-width: 600px) {
    footer .footer-grid { grid-template-columns: 1fr; gap: 25px; }
  }
  .nav-actions {
display: flex;
/* flex-wrap: wrap;*/
gap: 10px;
justify-content: center;
align-items: center;
margin-top: 20px;
}

.nav-actions a {
padding: 8px 16px;
text-decoration: none;
border-radius: 4px;
font-weight: 500;
white-space: nowrap;
}

.nav-actions .link {
background-color: #f0f0f0;
color: #333;
}

.nav-actions .btn-login {
background-color: #007bff;
color: #fff;
}

@media (max-width: 600px) {
.nav-actions {
  flex-direction: column;
  align-items: stretch;
}

.nav-actions a {
  width: 100%;
  text-align: center;
}
}
nav {
display: flex;
justify-content: space-between;
align-items: center;
padding: 15px 20px;
position: relative;
}

.brand {
display: flex;
flex-direction: column;
}

.logo a {
font-size: 24px;
font-weight: bold;
text-decoration: none;
color: #000;
}

.logo span {
color: #007bff;
margin-left: 3px;
}

.dre-id {
font-size: 12px;
color: #666;
}

.nav-actions {
display: flex;
gap: 20px;
align-items: center;
}

/* Hamburger button */
.hamburger {
display: none;
flex-direction: column;
gap: 5px;
cursor: pointer;
}

.hamburger span {
width: 25px;
height: 3px;
background: #000;
display: block;
}

/* Mobile */
@media (max-width: 768px) {
.hamburger {
  display: flex;
}

.nav-actions {
  display: none;
  flex-direction: column;
  width: 100%;
  margin-top: 15px;
  gap: 15px;
}

.nav-actions.show {
  display: flex;
}

nav {
  flex-direction: column;
  align-items: flex-start;
}
}
nav {
padding: 15px 20px;
}

.nav-header {
display: flex;
justify-content: space-between;
align-items: center;
}

.brand {
display: flex;
flex-direction: column;
align-items: flex-start;
}

.logo a {
font-size: 24px;
font-weight: bold;
text-decoration: none;
color: #000;
}

.logo span {
color: #007bff;
margin-left: 4px;
}

.dre-id {
font-size: 12px;
color: #666;
}
.dre-id {
font-size: 12px;
color: #666;
white-space: nowrap;
}

/* Mobile: break into two lines */
@media (max-width: 768px) {
.dre-id {
  white-space: normal;
  line-height: 1.4;
  max-width: 200px; /* optional: controls wrapping */
}
}
.nav-header {
display: flex;
justify-content: space-between; /* pushes hamburger to far right */
align-items: center;
width: 100%;
}

.brand {
display: flex;
flex-direction: column;
align-items: flex-start;
}

.hamburger {
display: none;
flex-direction: column;
gap: 5px;
cursor: pointer;
}

.hamburger span {
width: 25px;
height: 3px;
background: #000;
display: block;
}

/* Mobile view */
@media (max-width: 768px) {
.hamburger {
  display: flex;
}

.nav-actions {
  display: none;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

.nav-actions.show {
  display: flex;
}
}

/*added */
@media (min-width: 1200px) {
.faq-grid {
column-count: 2;
column-gap: 18px;
}

.faq-item {
break-inside: avoid;
margin-bottom: 18px;

}
}
