/* ---------- Theme ---------- */
:root{
    /* Your gradients */
    --grad1-start: #9ad2ed;
    --grad1-end:   #216bc6;
    --grad2-start: #7dadba;
    --grad2-end:   #77c9f1;
  
    --ink: #0e2540;
    --muted: #4b5b6c;
    --accent: #1f6bc7;
    --bg-card: #ffffff;
    --ring: rgba(33,107,198,0.18);
    --shadow: 0 10px 30px rgba(14,37,64,.08), 0 2px 8px rgba(14,37,64,.06);
  }
  
  /* Gentle layered gradients behind the content */
  body{
    margin:0;
    color: var(--ink);
    font-family: 'Merriweather', serif;
    line-height: 1.7;
    background:
      radial-gradient(1000px 600px at 10% -10%, var(--grad2-start), transparent 70%),
      radial-gradient(800px 500px at 90% 10%, var(--grad2-end), transparent 70%),
      linear-gradient(135deg, var(--grad1-start), var(--grad1-end));
    background-attachment: fixed;
  }
  
  /* Accent span used in hero title */
  .accent { color: #ffd36e; }
  
  /* ---------- Article Layout ---------- */
  .page-wrap{
    padding: clamp(20px, 3vw, 40px);
  }
  
  .pro-article{
    max-width: 980px;
    margin: 0 auto 64px auto;
    background: var(--bg-card);
    border-radius: 18px;
    box-shadow: var(--shadow);
    padding: clamp(24px, 4vw, 48px);
    border: 1px solid var(--ring);
  }
  
  /* ---------- Header ---------- */
  .article-header{ margin-bottom: 18px; }
  .kicker{
    font-family: 'Raleway', sans-serif;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-weight: 600;
    color: var(--accent);
    margin: 0 0 6px 0;
    font-size: .8rem;
  }
  .article-title{
    margin: 0 0 6px 0;
    line-height: 1.25;
    font-size: clamp(1.6rem, 2.4vw, 2.2rem);
    font-weight: 700;
  }
  .subtitle{ color: var(--muted); margin: 0 0 8px 0; }
  .meta, .disclaimer{ font-size: .95rem; color: var(--muted); margin: 4px 0; }
  .disclaimer strong{ color: #1b3b63; }
  
  /* ---------- Typography ---------- */
  h2{
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    margin: 28px 0 10px 0;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    line-height: 1.3;
  }
  h3{
    font-size: clamp(1.05rem, 1.6vw, 1.2rem);
    margin: 20px 0 8px 0;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
  }
  p{ margin: 10px 0 14px 0; }
  em{ font-style: italic; }
  
  /* ---------- Lists ---------- */
  ul{ padding-left: 1.2rem; margin: 8px 0 14px 0; }
  .bulleted-links li + li{ margin-top: 6px; }
  
  /* ---------- Notes / Callouts ---------- */
  .note{
    background: linear-gradient(135deg, #f6fbff, #eef6ff);
    border: 1px solid var(--ring);
    border-radius: 12px;
    padding: 12px 14px;
    font-size: .975rem;
  }
  
  /* Small print helper */
  .tiny-note{
    font-size: .9rem;
    color: var(--muted);
    margin-top: 6px;
  }
  
  /* ---------- Table ---------- */
  .table-wrap{
    margin: 12px 0 16px 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .data-table{
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 0.99rem;
    background: #fff;
    border: 1px solid var(--ring);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 14px rgba(14,37,64,.05);
  }
  .data-table thead th{
    background: linear-gradient(135deg, var(--grad2-start), var(--grad2-end));
    color: #fff;
    text-align: left;
    padding: 12px 14px;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    white-space: nowrap;
  }
  .data-table td{
    padding: 12px 14px;
    border-top: 1px solid #e9f1fb;
    vertical-align: top;
  }
  .data-table tbody tr:hover{
    background: #f9fbff;
  }
  .data-table a{
    color: var(--accent);
    text-decoration: none;
    border-bottom: 1px dashed rgba(31,107,199,.35);
  }
  .data-table a:hover{
    color: #0f57b1;
    border-bottom-color: rgba(31,107,199,.7);
  }
  
  /* ---------- Timeline (month-by-month) ---------- */
  .timeline{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 8px;
  }
  .timeline > div{
    background: #fafcff;
    border: 1px solid var(--ring);
    border-radius: 14px;
    padding: 14px 16px;
    box-shadow: 0 4px 10px rgba(14,37,64,.04);
  }
  .timeline h3{
    margin: 0 0 6px 0;
    font-weight: 700;
  }
  @media (max-width: 860px){
    .timeline{ grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 560px){
    .timeline{ grid-template-columns: 1fr; }
  }
  
  /* ---------- Link Cards ---------- */
  .link-grid{
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 16px;
  }
  .link-card{
    background: #fafcff;
    border: 1px solid var(--ring);
    border-radius: 14px;
    padding: 14px 16px;
    box-shadow: 0 4px 10px rgba(14,37,64,.04);
  }
  .link-card h3{ margin: 0 0 8px 0; }
  .link-card ul{ margin: 6px 0 0 0; }
  .link-card li{ margin: 6px 0; }
  .link-card a{
    color: var(--accent);
    text-decoration: none;
    border-bottom: 1px dashed rgba(31,107,199,.35);
    transition: border-color .2s ease, color .2s ease;
  }
  .link-card a:hover{
    color: #0f57b1;
    border-bottom-color: rgba(31,107,199,.7);
  }
  
  /* ---------- Details (FAQ) ---------- */
  details{
    border: 1px solid var(--ring);
    border-radius: 12px;
    background: #fff;
    padding: 10px 14px;
    margin: 10px 0;
    box-shadow: 0 3px 10px rgba(14,37,64,.04);
  }
  details[open]{ background: #fdfefe; }
  summary{
    cursor: pointer;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
  }
  
  /* ---------- Accessibility tweaks ---------- */
  a:focus{
    outline: 3px solid #98c7ff;
    outline-offset: 2px;
  }
  
  /* ===== The following blocks mirror your sample's navbar/hero/footer styles (UNCHANGED) ===== */
  
  /* Navbar */
  .navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #ff9528;
    padding: 15px 20px;
    color: #111;
    box-shadow:
      0 10px 20px rgba(0,0,0,0.12),
      0 3px 6px rgba(0,0,0,0.08);
  }
  
  .navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 9vh;
  }
  
  .edlogo {
    display: flex;
    align-items: center;
    margin-left: 20px;
    font-family: 'Merriweather', serif;
    font-size: 35px;
    color: #111;
  }
  
  .edlogo img {
    width: 50px;
    height: auto;
    margin-right: 10px;
    margin-top: 25px;
    margin-bottom: 10px;
    margin-left: 100px;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 24px;
    margin-right: 300px;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
  }
  
  .nav-links a {
    color: #111;
    text-decoration: none;
    font-weight: 700;
    padding: 8px 14px;
    border-radius: 10px;
    transition:
      transform 0.2s ease,
      box-shadow 0.2s ease,
      background-color 0.2s ease,
      color 0.2s ease;
    will-change: transform;
  }
  
  .nav-links a:hover,
  .nav-links a:focus-visible {
    background-color: #fff;
    color: #111;
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.12);
    outline: none;
  }
  
  .nav-links a[aria-current="page"],
  .nav-links a.active {
    background-color: rgba(255,255,255,0.9);
    box-shadow: inset 0 0 0 2px rgba(0,0,0,0.08);
  }
  
  .nav-links a:visited {
    color: inherit;
    background: none;
    box-shadow: none;
  }
  
  .edlogo a,
  .edlogo span,
  .edlogo {
    color: #000 !important;
    text-decoration: none !important;
    background: none !important;
    -webkit-background-clip: initial !important;
    background-clip: initial !important;
  }
  
  .edlogo .logo-text .ed { color: #020046 !important; }
  .edlogo .logo-text .start { color: #000; }
  
  .edlogo a:hover,
.edlogo a:visited,
.edlogo a:focus {
  color: #000 !important;
  text-decoration: none !important;
} 

/* Responsive tweaks */
@media (max-width: 1100px) {
  .navbar-container {
    padding: 0 24px;
  }
  .nav-links {
    margin-right: 60px;
    gap: 18px;
  }
  .edlogo img {
    margin-left: 24px;
  }
  .pro-article {
    margin: 0 16px 48px;
  }
}

@media (max-width: 900px) {
  .navbar-container {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    height: auto;
  }
  .nav-links {
    margin: 0;
    flex-wrap: wrap;
    justify-content: center;
  }
  .edlogo {
    margin-left: 0;
  }
  .edlogo img {
    margin: 10px;
  }
}

@media (max-width: 640px) {
  .navbar {
    padding: 12px 16px;
  }
  .nav-links {
    gap: 12px;
  }
  .pro-article {
    padding: 24px;
  }
  .footer-container {
    flex-direction: column;
    gap: 12px;
  }
}
  
  /* Hero (header) */
  .hero {
    min-height: 500px;
    height: auto;
    text-align: center;
    background: linear-gradient(180deg, #004D99, #002B5C), url('heroimg.png') center/cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
  }
  
  .hero h1 {
    font-family: 'Merriweather', serif;
    font-size: clamp(2.6rem, 7vw, 120px);
  }
  
  .hero h2 {
    font-family: "Segoe Script", cursive;
    font-size: clamp(1.4rem, 3.8vw, 48px);
  }
  
  .hero .highlight {
    color: #FFC107;
    font-weight: bold;
  }
  
  /* Footer */
  footer {
    background: linear-gradient(90deg, #1A73E8, #004D99);
    color: #fff;
    padding: 20px;
  }
  
.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .social-icons img {
    width: 50px;
    margin: 0 10px;
  }

  .contact-info {
    text-align: center;
  }
  

