  :root {
    --teal: #035f74;
    --teal-dark: #024455;
    --teal-light: #0a7d97;
    --teal-pale: #e8f4f7;
    --teal-mid: #c2dfe6;
    --white: #ffffff;
    --gray-100: #f5f7f8;
    --gray-200: #e8ecee;
    --gray-300: #cdd5d9;
    --gray-500: #7a8f96;
    --gray-700: #3d5259;
    --gray-900: #1a2e34;
    --accent: #e8a020;
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Roboto', sans-serif;
    color: var(--gray-900);
    background: var(--white);
    font-size: 16px;
    line-height: 1.6;
  }
  /* NAV */
/*
  nav {
    background: var(--teal-dark);
    position: sticky; top: 0; z-index: 100;
    padding: 0 2rem;
    display: flex; align-items: center; justify-content: space-between;
    height: 64px;
    box-shadow: 0 2px 12px rgba(3,95,116,0.25);
  }
*/
.tb-text {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    color: var(--textColor);
    text-align: left;
}
  .ihif-nav-logo {
    font-family: 'Roboto', serif;
    font-size: 1.1rem; font-weight: 700;
    color: var(--white); letter-spacing: 0.02em;
    display: flex; align-items: center; gap: 0.75rem;
  }
  .ihif-nav-logo span.ihif-ihi-badge {
    background: var(--white); color: var(--teal);
    font-size: 0.75rem; font-weight: 700;
    padding: 2px 8px; border-radius: 3px;
    letter-spacing: 0.08em; text-transform: uppercase;
  }
  .ihif-nav-cta {
    background: var(--accent); color: var(--white);
    font-size: 0.875rem; font-weight: 600;
    padding: 0.5rem 1.25rem; border-radius: 4px;
    text-decoration: none; transition: filter 0.2s;
    letter-spacing: 0.03em;
  }
  .ihif-nav-cta:hover { filter: brightness(1.1); }

  /* HERO */
  .ihif-hero {
    position: relative; overflow: hidden;
    min-height: 520px;
    display: flex; align-items: center;
  }
  .ihif-hero-img {
    position: absolute; inset: 0;
    width: 100%; height: 100%; object-fit: cover;
    object-position: center;
  }
  .ihif-hero-overlay {
    position: absolute; z-index:0; inset: 0;
    background: linear-gradient(100deg, rgba(3,68,85,0.96) 30%, rgba(3,95,116,0.95) 60%, rgba(3,95,116,0.4) 100%);
  }
  .ihif-hero-content {
    position: relative; z-index: 1;
    max-width: 1100px; margin: 0 auto; padding: 5rem 2rem;
    width: 100%;
  }
  .ihif-hero-eyebrow {
    font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--teal-mid); font-weight: 500; margin-bottom: 1rem;
  }
  .ihif-hero h1 {
    font-family: 'Roboto', serif;
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    color: var(--white); font-weight: 700; line-height: 1.1;
    margin-bottom: 1rem; max-width: 680px;
  }
  .ihif-hero h1 em { font-style: italic; color: var(--teal-mid); }
  .ihif-hero-location {
    font-size: 1.05rem; color: rgba(255,255,255,0.85);
    font-weight: 400; margin-bottom: 0.4rem; letter-spacing: 0.01em;
  }
  .ihif-hero-tagline {
    font-family: 'Roboto', serif;
    font-style: italic; font-size: 1.15rem;
    color: rgba(255,255,255,0.7); margin-bottom: 2.5rem; margin-top: 0.2rem;
  }
  .ihif-hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
  .ihif-btn-primary {
    background: var(--accent); color: var(--white);
    padding: 0.875rem 2rem; border-radius: 5px;
    font-weight: 600; font-size: 0.95rem; text-decoration: none;
    transition: filter 0.2s, transform 0.15s;
    letter-spacing: 0.02em; display: inline-block;
  }
  .ihif-btn-primary:hover { filter: brightness(1.1); transform: translateY(-1px); }
  .ihif-btn-outline {
    border: 2px solid rgba(255,255,255,0.6); color: var(--white);
    padding: 0.875rem 2rem; border-radius: 5px;
    font-weight: 500; font-size: 0.95rem; text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
    display: inline-block;
  }
  .ihif-btn-outline:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }

  /* STAT BAR */
  .ihif-stat-bar {
    background: var(--teal);
    padding: 2rem;
    display: flex; justify-content: center; gap: 0;
    flex-wrap: wrap;
  }
  .ihif-stat-item {
    text-align: center; padding: 0.75rem 3rem;
    border-right: 1px solid rgba(255,255,255,0.2);
  }
  .ihif-stat-item:last-child { border-right: none; }
  .ihif-stat-num {
    font-family: 'Roboto', serif;
    font-size: 2.2rem; font-weight: 700; color: var(--white);
    line-height: 1;
  }
  .ihif-stat-label { font-size: 0.8rem; color: var(--teal-mid); margin-top: 0.3rem; letter-spacing: 0.06em; text-transform: uppercase; }

  /* SECTION SHARED */
  section { padding: 5rem 2rem; }
  .ihif-container { max-width: 1100px; margin: 0 auto; }
  .ihif-section-label {
    font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--teal-light); font-weight: 600; margin-bottom: 0.75rem;
  }
  h2 {
    font-family: 'Roboto', serif;
    font-size: clamp(1.7rem, 3.5vw, 2.4rem);
    color: var(--gray-900); font-weight: 700; line-height: 1.2;
    margin-bottom: 1rem;
  }
  h2.ihif-on-dark { color: var(--white); }
  .ihif-lead {
    font-size: 1.1rem; color: var(--gray-700); line-height: 1.7;
    max-width: 780px; margin-bottom: 2rem;
  }

  /* WHY PARTICIPATE */
  .ihif-why { background: var(--gray-100); }
  .ihif-why-intro { margin-bottom: 3rem; }
  .ihif-why-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 0;
  }
  .ihif-why-col {
    background: var(--white); padding: 2.5rem;
    border: 1px solid var(--gray-200);
  }
  .ihif-why-col:nth-child(1) { border-radius: 8px 0 0 0; border-right: none; border-bottom: none; }
  .ihif-why-col:nth-child(2) { border-radius: 0 8px 0 0; border-bottom: none; }
  .ihif-why-col:nth-child(3) { border-radius: 0 0 0 8px; border-right: none; border-top: none; }
  .ihif-why-col:nth-child(4) { border-radius: 0 0 8px 0; border-top: none; }
  .ihif-why-col-header {
    display: flex; align-items: center; gap: 0.75rem;
    margin-bottom: 1.5rem;
  }
  .ihif-why-icon {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--teal-pale); display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .ihif-why-icon svg { width: 22px; height: 22px; fill: var(--teal); }
  .ihif-why-col-header h3 {
    font-family: 'Roboto', serif;
    font-size: 1.15rem; font-weight: 700; color: var(--teal-dark);
  }
  .ihif-why-list { list-style: none; }
  .ihif-why-list li {
    padding: 0.55rem 0; font-size: 0.95rem; color: var(--gray-700);
    border-bottom: 1px solid var(--gray-100); display: flex; gap: 0.6rem;
    align-items: flex-start;
  }
  .ihif-why-list li:last-child { border-bottom: none; }
    /*
  .ihif-why-list li::before {
    content: '→'; color: var(--teal); font-size: 0.9rem; margin-top: 0.05rem; flex-shrink: 0;
  }
    */
    .ihif-why-list li::before {
        content: ''; color: var(--teal); font-size: 0.9rem; margin-top: 0.05rem; flex-shrink: 0;
      }
  .ihif-why-btns { margin-top: 2.5rem; display: flex; gap: 1rem; flex-wrap: wrap; }
  .ihif-btn-teal {
    background: var(--teal); color: var(--white);
    padding: 0.8rem 1.8rem; border-radius: 5px;
    font-weight: 600; font-size: 0.9rem; text-decoration: none;
    transition: background 0.2s, transform 0.15s; display: inline-block;
  }
  .ihif-btn-teal:hover { background: var(--teal-dark); transform: translateY(-1px); }
  .ihif-btn-ghost {
    border: 2px solid var(--teal); color: var(--teal);
    padding: 0.8rem 1.8rem; border-radius: 5px;
    font-weight: 600; font-size: 0.9rem; text-decoration: none;
    transition: all 0.2s; display: inline-block;
  }
  .ihif-btn-ghost:hover { background: var(--teal-pale); }

  /* AUDIENCE */
  .ihif-audience { background: var(--teal); position: relative; overflow: hidden; }
  .ihif-audience::before {
    content: '';
    position: absolute; top: -80px; right: -80px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
    pointer-events: none;
  }
  .ihif-audience-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
    background: rgba(255,255,255,0.15);
    border-radius: 8px; overflow: hidden;
    margin-top: 2.5rem;
  }
  .ihif-audience-col {
    background: rgba(255,255,255,0.08);
    padding: 2rem 2.5rem;
  }
  .ihif-audience-col h3 {
    font-family: 'Roboto', serif;
    font-size: 0.85rem; font-weight: 700; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--teal-mid);
    margin-bottom: 1.25rem;
  }
  .ihif-audience-list { list-style: none; }
  .ihif-audience-list li {
    padding: 0.45rem 0; color: rgba(255,255,255,0.9); font-size: 0.95rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    display: flex; gap: 0.6rem;
  }
  .ihif-audience-list li:last-child { border-bottom: none; }
  .ihif-audience-list li::before { content: '▸'; color: var(--teal-mid); font-size: 0.75rem; margin-top: 0.2rem; }
  .ihif-audience-cta { margin-top: 2.5rem; text-align: center; }
  .ihif-btn-white {
    background: var(--white); color: var(--teal);
    padding: 0.85rem 2rem; border-radius: 5px;
    font-weight: 600; font-size: 0.95rem; text-decoration: none;
    transition: all 0.2s; display: inline-block;
  }
  .ihif-btn-white:hover { background: var(--teal-pale); }

  /* TESTIMONIAL */
  .ihif-testimonial { background: var(--white); }
  .ihif-testimonial-inner {
    background: linear-gradient(135deg, var(--teal-pale) 0%, #d6edf3 100%);
    border-left: 5px solid var(--teal);
    border-radius: 0 8px 8px 0;
    padding: 3rem 3.5rem;
    max-width: 900px;
  }
  .ihif-testimonial-stat {
    font-family: 'Roboto', serif;
    font-size: 3.5rem; font-weight: 700;
    color: var(--teal); line-height: 1;
  }
  .ihif-testimonial-text {
    font-size: 1.15rem; font-weight: 500; color: var(--gray-900);
    margin-top: 0.5rem; margin-bottom: 1.5rem;
  }
  .ihif-testimonial-source { font-size: 0.85rem; color: var(--gray-500); letter-spacing: 0.04em; }
  .ihif-top3-grid {
    margin-top: 3rem;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  }
  .ihif-top3-card {
    background: var(--gray-100); border-radius: 8px; padding: 1.75rem;
    border-top: 4px solid var(--teal); text-align: center;
  }
  .ihif-top3-num {
    font-family: 'Roboto', serif;
    font-size: 2rem; font-weight: 700; color: var(--teal); line-height: 1;
    margin-bottom: 0.5rem;
  }
  .ihif-top3-label { font-size: 0.9rem; color: var(--gray-700); line-height: 1.4; }
  .ihif-top3-footer { margin-top: 2.5rem; text-align: center; }

  /* SCHEDULE */
  .ihif-schedule { background: var(--gray-100); }
  .ihif-schedule-info {
    display: grid; grid-template-columns: auto 1fr; gap: 3rem;
    align-items: start; margin-bottom: 3rem;
  }
  .ihif-when-where {
    background: var(--teal); border-radius: 8px; padding: 2rem 2.5rem;
    min-width: 220px;
  }
  .ihif-when-where h3 {
    font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--teal-mid); margin-bottom: 0.4rem;
  }
  .ihif-when-where p { color: var(--white); font-size: 1rem; font-weight: 500; margin-bottom: 1.5rem; }
  .ihif-when-where p:last-child { margin-bottom: 0; }
  .ihif-schedule-table {
    width: 100%;
    border-collapse: collapse; background: var(--white);
    border-radius: 8px; overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  }
  .ihif-schedule-table th {
    background: var(--teal); color: var(--white);
    padding: 1rem 1.25rem; text-align: left;
    font-size: 0.85rem; font-weight: 600; letter-spacing: 0.05em;
    text-transform: uppercase;
  }
  .ihif-schedule-table td {
    padding: 0.9rem 1.25rem; border-bottom: 1px solid var(--gray-200);
    font-size: 0.9rem; vertical-align: top; color: var(--gray-700);
  }
  .ihif-schedule-table tr:last-child td { border-bottom: none; }
  .ihif-schedule-table td strong { color: var(--gray-900); display: block; margin-bottom: 0.2rem; }
  .ihif-schedule-table td .ihif-event-tag {
    display: inline-block; background: var(--teal-pale); color: var(--teal);
    font-size: 0.75rem; font-weight: 600; padding: 2px 8px; border-radius: 3px;
    margin-top: 0.25rem;
  }
  .ihif-schedule-note {
    margin-top: 1rem; font-size: 0.875rem; color: var(--gray-500);
    font-style: italic; line-height: 1.5;
  }

  /* VENUE */
  .ihif-venue { background: var(--white); }
  .ihif-venue-card {
    background: var(--gray-100); border-radius: 8px;
    padding: 2.5rem; display: flex; gap: 2rem;
    align-items: flex-start; flex-wrap: wrap;
  }
  .ihif-venue-icon { font-size: 3rem; flex-shrink: 0; }
  .ihif-venue-details h3 {
    font-family: 'Roboto', serif;
    font-size: 1.4rem; color: var(--teal-dark); margin-bottom: 0.4rem;
  }
  .ihif-venue-details p { color: var(--gray-700); margin-bottom: 0.25rem; }
  .ihif-venue-cta { margin-top: 2.5rem; }

  /* CONTACT */
  .ihif-contact { background: var(--teal-dark); }
  .ihif-contact-inner {
    display: flex; gap: 3rem; align-items: center; flex-wrap: wrap;
  }
  .ihif-contact-text { flex: 1; min-width: 260px; }
  .ihif-contact-text h2 { color: var(--white); margin-bottom: 0.75rem; }
  .ihif-contact-text p { color: rgba(255,255,255,0.75); font-size: 1rem; margin-bottom: 1.5rem; max-width: 480px; }
  .ihif-contact-card {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px; padding: 2rem 2.5rem;
    min-width: 260px;
  }
  .ihif-contact-name {
    font-weight: 600; color: var(--white); font-size: 1.1rem; margin-bottom: 0.5rem;
  }
  .ihif-contact-detail {
    font-size: 0.9rem; color: rgba(255,255,255,0.8); margin-bottom: 0.35rem;
    display: flex; gap: 0.5rem; align-items: center;
  }
  .ihif-contact-detail a { color: var(--teal-mid); text-decoration: none; }
  .ihif-contact-detail a:hover { text-decoration: underline; }

  /* FOOTER */
  footer {
    background: var(--gray-900);
    padding: 2rem; text-align: center;
    font-size: 0.8rem; color: var(--gray-500);
  }
  footer a { color: var(--gray-300); text-decoration: none; }

  /* RESPONSIVE */
  @media (max-width: 768px) {
    .ihif-why-grid, .ihif-audience-grid, .ihif-top3-grid { grid-template-columns: 1fr; }
    .ihif-why-col:nth-child(1),
    .ihif-why-col:nth-child(2),
    .ihif-why-col:nth-child(3),
    .ihif-why-col:nth-child(4) {
      border-radius: 0; border: 1px solid var(--gray-200); margin-bottom: -1px;
    }
    .ihif-schedule-info { grid-template-columns: 1fr; }
    .ihif-stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); padding: 1rem 1.5rem; }
    .ihif-stat-item:last-child { border-bottom: none; }
    .ihif-testimonial-inner { padding: 2rem; }
    .ihif-contact-inner { flex-direction: column; }
  }


.ihif-why-col h3 {
    margin:0px;
}

.pageTitle, h1 {
    font-family: 'Roboto', serif;
    font-size: clamp(1.7rem, 3.5vw, 2.4rem);
    color: var(--gray-900);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

html.safari:not(.no-safari-overflow-x-fix) .body {
    overflow-x: visible;
}
@media (max-width: 991px) {
    #header .header-nav-main nav > ul li.dropdown .dropdown-menu {
        display: block;
    }
}

@media (min-width: 992px) {
    #header .header-nav.header-nav-divisor nav > ul > li {
        max-width: 150px;
        margin: 0;
        text-align: center;
    }
    #header .header-nav-main nav > ul > li > a {
        font-size: 11px;
    }
    #header .header-nav.header-nav-links nav > ul > li > a, #header .header-nav.header-nav-links nav > ul > li:hover > a, #header .header-nav.header-nav-line nav > ul > li > a, #header .header-nav.header-nav-line nav > ul > li:hover > a {
        padding: 0 .6rem;
    }
}