/* ==========================================================================
   1. GLOBAL HEADER OVERRIDES & RESETS for conference pages
   ========================================================================== */
#AnnouncementBarPlaceholder_T57685E61054_Col00, .announcement-bar__white {
  display: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
/* Remove white space between main nav and conference nav */
.page-header {
  background: transparent !important;
  padding: 0 52px !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin: 0 !important;
  min-height: 0 !important;
  position: relative !important;
  z-index: 9999 !important;
}
/* Tighten up main navigation spacing */
.site-header, header.main-navigation {
  padding: 0.6rem 0;
  margin-bottom: 0 !important;
  position: relative !important;
  z-index: 9999 !important;
}
.main-navigation a {
  padding: 0.6rem 1rem;
}
/* Force mega menu/dropdowns to highest z-index */
.site-header *, .main-navigation *, header.main-navigation * {
  position: relative !important;
  z-index: 9999 !important;
}
/* ==========================================================================
   GLOBAL FONT OVERRIDE - Proxima Nova for FRONTEND ONLY
   ========================================================================== */
/* Exclude Sitefinity backend from font changes */
body:not(.sfPageEditor):not(.sfContentEditor):not(.RadEditorContainer) {
  font-family: 'Proxima Nova', Arial, sans-serif;
  font-size: 20px;
}
/* Apply Proxima Nova only to frontend elements */
body:not(.sfPageEditor):not(.sfContentEditor) h1, body:not(.sfPageEditor):not(.sfContentEditor) h2, body:not(.sfPageEditor):not(.sfContentEditor) h3, body:not(.sfPageEditor):not(.sfContentEditor) h4, body:not(.sfPageEditor):not(.sfContentEditor) h5, body:not(.sfPageEditor):not(.sfContentEditor) h6, body:not(.sfPageEditor):not(.sfContentEditor) p, body:not(.sfPageEditor):not(.sfContentEditor) span, body:not(.sfPageEditor):not(.sfContentEditor) div, body:not(.sfPageEditor):not(.sfContentEditor) a, body:not(.sfPageEditor):not(.sfContentEditor) li, body:not(.sfPageEditor):not(.sfContentEditor) ul, body:not(.sfPageEditor):not(.sfContentEditor) ol, .container, .section-header, .section-header h2, .section-header p, .section-subtitle, .intro-section, .intro-content, .who-attend, .who-attend-content, .who-attend-list, .who-item, .questions-box, .scholarship-giveaway, .scholarship-item, .scholarship-intro, .keynote-section, .keynote-bio, .keynote-bio p, .accordion-toggle, .accordion-content, .accordion-content p, .grid, .grid__unit, .feature-card, .info-card, .nav-menu, .conf-nav-menu, .hero, .alert-bar, .btn, .accent-list, .aside-nav {
  font-family: 'Proxima Nova', Arial, sans-serif;
}
/*End of global overides*/
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}





/* Used above H1 to simplify H1 titles */
.conf-eyebrow {
  margin: 0 0 0.5rem 0;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #5BA4CF;
  opacity: 1;
  font-family: 'Proxima Nova', Arial, sans-serif;
}
/* May use for Page introductions, Section lead-ins, 
Contextual notes, Italicized callouts */
/* Standalone Introduction/Note Text */
.conf-intro {
  font-size: 1.2rem;
  color: #4a5568;
  font-style: italic;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 0 2rem 0;
  font-family: 'Proxima Nova', Arial, sans-serif;
}
/* Center variant */
.conf-intro.center {
  text-align: center;
  margin: 0 auto 2rem auto;
}
@media (max-width: 968px) {
  .conf-intro.center {
    text-align: center;
    margin: 0 auto 1.5rem auto;
  }
}


/* ==========================================================================
   MAIN PAGE SCHEDULE SECTION
   ========================================================================== */
.schedule-section {
  padding: 3rem 0 3rem 0;
  background: white;
  position: relative;
}

.schedule-section .alert-bar {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.schedule-section .section-header {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================================================
   MAIN PAGE - SCHEDULE AT A GLANCE - Tabs and Tables
   ========================================================================== */

/* Desktop Tabs - Shows 768px+ */
.schedule-tabs-wrapper {
  display: block;
  margin-bottom: 2.5rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.schedule-tabs {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  border-bottom: 2px solid #e5e7eb;
  gap: 0;
}

.schedule-tab {
  flex: 1;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  padding: 1.25rem 1.5rem;
  font-size: 1.2rem;
  font-weight: 500;
  color: #999;
  cursor: pointer;
  transition: border-bottom-color 0.15s ease, color 0.15s ease;
  font-family: 'Proxima Nova', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  position: relative;
  margin-bottom: -2px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.schedule-tab:focus {
  outline: none;
}

.schedule-tab:focus-visible {
  outline: 2px solid #D27A3B;
  outline-offset: -2px;
  z-index: 1;
}

/* Only inactive tabs get hover effect */
.schedule-tab[aria-selected="false"]:hover {
  color: #666;
  border-bottom-color: #c46d2f;
}

/* Active tab - burnt orange, stays this way even on hover */
.schedule-tab[aria-selected="true"] {
  color: #1e3a5f;
  font-weight: 700;
  border-bottom-color: #D27A3B !important;
  background-color: transparent;
}

.schedule-tabpanel {
  display: none;
  padding-top: 2rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.schedule-tabpanel[aria-hidden="false"] {
  display: block;
  animation: fadeIn 0.3s ease forwards;
}

@keyframes fadeIn {
  from { 
    opacity: 0;
  }
  to { 
    opacity: 1;
  }
}

/* ==========================================================================
   MOBILE ACCORDION - Matches Conference Accordion Styles
   ========================================================================== */
.schedule-accordion {
  display: none;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.schedule-accordion-item {
  border: 1px solid #D1D5DB;
  border-radius: 6px;
  margin-bottom: 1rem;
  background: white;
  overflow: hidden;
  transition: all 0.2s ease;
  clear: both;
}

.schedule-accordion-item:hover {
  border-color: #B8BFC7;
}

/* Accordion Button/Toggle */
.schedule-accordion-button {
  width: 100%;
  background: white;
  border: none;
  padding: 0.75rem 1.25rem;
  min-height: 48px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  font-weight: 600;
  color: #1e3a5f;
  transition: background 0.2s ease;
  position: relative;
  font-family: 'Proxima Nova', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.schedule-accordion-button:hover {
  background: #F9FAFB;
}

.schedule-accordion-button:focus {
  outline: 2px solid #5BA4CF;
  outline-offset: -2px;
  background: #F9FAFB;
}

.schedule-accordion-button:focus:not(:focus-visible) {
  outline: none;
}

/* Circular Icon with Plus/X - PRIMARY BURNT ORANGE */
.schedule-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #C86A2F;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 400;
  color: white;
  transition: all 0.3s ease;
  flex-shrink: 0;
  pointer-events: none;
}

/* Hover state - DARKER burnt orange */
.schedule-accordion-button:hover .schedule-icon {
  background: #c46d2f;
  transform: scale(1.05);
}

/* Active/Expanded state - KEEP primary burnt orange, rotate icon */
.schedule-accordion-button[aria-expanded="true"] .schedule-icon {
  background: #C86A2F;
  transform: rotate(45deg);
}

/* Accordion Panel/Content */
.schedule-accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  padding: 0;
  background: white;
  position: relative;
}

/* Thin rule separator */
.schedule-accordion-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 1.25rem;
  right: 1.25rem;
  height: 1px;
  background: #E5E7EB;
  opacity: 0;
  transition: opacity 0.2s ease;
}

/* Expanded state */
.schedule-accordion-panel[aria-hidden="false"] {
  max-height: 5000px;
  padding: 1.5rem 0 1.25rem 0;
}

/* Show thin rule when expanded */
.schedule-accordion-panel[aria-hidden="false"]::before {
  opacity: 1;
}

/* ==========================================================================
   SCHEDULE TABLE - Shared Styles for Desktop & Mobile
   ========================================================================== */
.schedule-section .schedule-table {
  width: 100%;
  border-collapse: collapse;
  background-color: #fff;
  font-family: 'Proxima Nova', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.schedule-section .schedule-table thead {
  background-color: #f3f4f6;
  border-bottom: 1px solid #e8e8e8;
}

.schedule-section .schedule-table th {
  padding: 1rem 1.25rem 1.5rem 1.25rem;
  text-align: left;
  font-size: 0.875rem;
  font-weight: 700;
  color: #1e3a5f;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.schedule-section .schedule-table td {
  padding: 1.25rem 1.25rem;
  border-bottom: 1px solid #f0f0f0;
  vertical-align: top;
  line-height: 1.6;
  font-size: 1.05rem;
}

.schedule-section .schedule-table tbody tr:last-child td {
  border-bottom: none;
}

.schedule-section .schedule-table tbody tr:hover {
  background-color: #f8f9fa;
}

.schedule-section .schedule-table td:first-child {
  font-weight: 700;
  color: #374151;
  white-space: nowrap;
  width: 25%;
}

.schedule-section .schedule-table td:last-child {
  color: #4b5563;
}

/* ==========================================================================
   SCHEDULE TABS RESPONSIVE BREAKPOINTS
   ========================================================================== */

/* Desktop Breakpoint - Show tabs, hide accordion */
@media (min-width: 768px) {
  .schedule-tabs-wrapper {
    display: block;
  }
  
  .schedule-accordion {
    display: none;
  }
  
  .schedule-section .schedule-table td:first-child {
    width: 20%;
  }
}

/* Mobile Breakpoint - Hide tabs, show accordion */
@media (max-width: 767px) {
  .schedule-tabs-wrapper {
    display: none;
  }
  
  .schedule-accordion {
    display: block;
    padding: 0 1rem;
  }
  
  .schedule-section {
    padding: 3rem 0 2rem 0;
  }
  
  .schedule-accordion-button {
    padding: 0.7rem 1rem;
    font-size: 0.95rem;
    min-height: 44px;
  }
  
  .schedule-accordion-panel::before {
    left: 1rem;
    right: 1rem;
  }
}

/* =========================






/* ==========================================================================
   KEYNOTE - for Landing page info
   ========================================================================== */
.keynote-announcement {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.keynote-section {
  background: linear-gradient(135deg, #1e3a5f 0%, #2980b9 100%);
  color: #ffffff;
  padding: 5rem 0 6rem 0; /* ← This matches .cta-banner-primary */
  position: relative;
  overflow: hidden;
}
/* Floating bubble animations */
.keynote-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(165, 199, 62, 0.08);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}
.keynote-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: rgba(165, 199, 62, 0.06);
  border-radius: 50%;
  animation: float 10s ease-in-out infinite reverse;
}
/* Make sure content sits above the bubbles */
.keynote-section .container {
  position: relative;
  z-index: 1;
}
/* Container styling - allows Sitefinity to control size */
.keynote-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 60px rgba(0, 0, 0, 0.4);
  border: 6px solid #A5C73E;
  transform: rotate(-2deg);
  transition: transform 0.3s ease;
  line-height: 0;
  max-width: 100%;
}
/* When image is floated left */
.keynote-image.img-left {
  float: left;
  margin-right: 2rem;
  margin-bottom: 1rem;
  display: inline-block;
  display: inline-block; /* Only for floated version */
}
.keynote-image:hover {
  transform: rotate(0deg) scale(1.02);
}
/* Let Sitefinity control sizing */
.keynote-image img {
  display: block;
}
.keynote-content {
  text-align: left;
}
.keynote-content h2 {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 0.5rem;
  font-weight: 800;
  font-family: 'Proxima Nova', Arial, sans-serif;
}
.keynote-title {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
  margin-bottom: 1.5rem;
  font-family: 'Proxima Nova', Arial, sans-serif;
}
.keynote-intro {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.7;
  margin-bottom: 2rem;
  font-family: 'Proxima Nova', Arial, sans-serif;
}
/*End of Keynote styles for landing page */
/* Keynote styles for KEYNOTE PAGE */
.keynote-cta {
  display: inline-block;
}
/* Keynote Bio */
.keynote-bio {
  overflow: hidden;
}
/* Clearfix for floated image */
.keynote-bio::after {
  content: "";
  display: table;
  clear: both;
}
/* Keynote Bio Headings */
.keynote-bio h3, .keynote-bio h4, .keynote-bio h5 {
  color: #1e3a5f;
  font-weight: 700;
  font-family: 'Proxima Nova', Arial, sans-serif;
  margin-top: 0;
  margin-bottom: 1.25rem;
  line-height: 1.3;
}
/* Keynote Bio Subtitle */
.keynote-bio-sub {
  display: block;
  font-size: 1.15rem;
  color: #4a5568;
  font-weight: 700;
  font-family: 'Proxima Nova', Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 0;
  margin-bottom: 1rem;
  line-height: 1.4;
}
/* Keynote Bio Paragraphs */
.keynote-bio p {
  font-family: 'Proxima Nova', Arial, sans-serif;
  font-size: 19px;
  line-height: 1.5;
  color: #374151;
  margin-bottom: 1.25rem;
}
/* Mobile Responsive */
@media (max-width: 768px) {
  .keynote-image.img-left {
    float: none !important;
    margin: 0 auto 1.5rem auto;
    display: block;
    max-width: 200px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 60px rgba(0, 0, 0, 0.4);
    border: 6px solid #A5C73E;
    transform: rotate(-2deg);
    transition: transform 0.3s ease;
  }
  .keynote-image.img-left:hover {
    transform: rotate(0deg) scale(1.02);
  }
  .keynote-bio {
    text-align: center;
    clear: none;
    overflow: visible;
    margin-top: 0;
    padding-top: 0;
  }
  .keynote-bio h3, .keynote-bio h4, .keynote-bio h5, .keynote-bio p {
    text-align: center;
  }
}
/* Conference Content Divider - Thin horizontal rule */
.conference-divider {
  border: none;
  height: 1px;
  background: linear-gradient(to right, transparent, #A5C73E 20%, #A5C73E 80%, transparent);
  margin: 3rem auto; /* Standard spacing, centered */
  opacity: 0.6;
  width: 100%; /* Full width */
}
/* Compact version - shorter line */
.conference-divider.compact {
  width: 60%; /* Shorter line, 60% of container width */
  max-width: 400px; /* Don't exceed 400px */
}
/* Short version - even more compact */
.conference-divider.short {
  width: 40%; /* Very short line */
  max-width: 250px;
}
/* Aside Navigation - Minimal Line Stack */
.aside-nav {
  padding: 0;
  border-top: 2px solid #A5C73E;
  border-bottom: 2px solid #A5C73E;
  padding: 1.5rem 0;
}
.aside-nav h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #A5C73E;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 0 0 1rem 0;
}
.aside-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.aside-nav li {
  border-bottom: 1px solid #e8edf2;
}
.aside-nav li:last-child {
  border-bottom: none;
}
.aside-nav a {
  color: #1e3a5f;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  display: block;
  padding: 0.75rem 0;
  transition: all 0.2s ease;
}
.aside-nav a:hover {
  color: #A5C73E;
  padding-left: 0.5rem;
}
/* Accent List - Reusable for all conference pages */

.accent-list {
  margin: 2rem 0;
}

.accent-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.accent-list li {
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
  line-height: 1.7;
  color: #4a5568;
}

.accent-list li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: #A5C73E;
  font-size: 1.2rem;
  font-weight: 900;
}

/* Links inside accent list */
.accent-list a {
  color: #5BA4CF; /* Light blue */
  text-decoration: none;
  font-weight: 500 !important;
  transition: color 0.3s ease;
}

.accent-list a:hover {
  color: #A5C73E; /* Green */
}

 
 
/* Responsive */
@media (max-width: 768px) {
  .accent-list li {
    padding-left: 2rem;
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }
}



/* ==========================================================================
   General Content Links (Questions box, paragraphs, general content)
   DEFAULT: Navy (#2F5AA8) | HOVER: Medium Blue (#3B9CD4) + underline
   ========================================================================== */

/* Content links - navy with light blue hover */
/* IMPORTANT: p a and li a use :not() to exclude main site navigation/footer */
.questions-box a,
.section-header a,
.intro-content a,
.keynote-bio a,
.registration-accordion-details a,
.day-package a,
.faq-container a,
.scholarship-item a,
.who-item a,
.info-card a,
.accordion-content a,
.destination a,
.past-conference-content a,
.cta-secondary-content a,
.testimonials a,
.who-attend-content a,
.schedule-section a,
.conf-intro a,

p a:not(.header-nav a):not(.header-utility a):not(.page-footer a):not(.footer-name a):not(.footer-contact a):not(.footer-links a):not(.footer-associated a):not(.footer-utility a):not(.conf-nav-menu a):not(.conf-navigation a):not(.aside-nav a):not(.accent-list a),
li a:not(.header-nav a):not(.header-utility a):not(.page-footer a):not(.footer-name a):not(.footer-contact a):not(.footer-links a):not(.footer-associated a):not(.footer-utility a):not(.conf-nav-menu a):not(.conf-navigation a):not(.aside-nav a):not(.accent-list a)  {
 
  color: #2F5AA8;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.questions-box a:hover,
.section-header a:hover,
.intro-content a:hover,
.keynote-bio a:hover,
.registration-accordion-details a:hover,
.day-package a:hover,
.faq-container a:hover,
.scholarship-item a:hover,
.who-item a:hover,
.info-card a:hover,
.accordion-content a:hover,
.destination a:hover,
.past-conference-content a:hover,
.cta-secondary-content a:hover,
.testimonials a:hover,
.who-attend-content a:hover,
.schedule-section a:hover,
.conf-intro a:hover,

p a:not(.header-nav a):not(.header-utility a):not(.page-footer a):not(.footer-name a):not(.footer-contact a):not(.footer-links a):not(.footer-associated a):not(.footer-utility a):not(.conf-nav-menu a):not(.conf-navigation a):not(.aside-nav a):not(.accent-list a):hover,
li a:not(.header-nav a):not(.header-utility a):not(.page-footer a):not(.footer-name a):not(.footer-contact a):not(.footer-links a):not(.footer-associated a):not(.footer-utility a):not(.conf-nav-menu a):not(.conf-navigation a):not(.aside-nav a):not(.accent-list a):hover {
  
  color: #3B9CD4;
  text-decoration: underline;
}

/* CRITICAL: Exclude these from this  - they have their own rules */
.aside-nav a,
.aside-nav a:hover,
.accent-list a,
.accent-list a:hover,
.conf-nav-menu a,
.conf-nav-menu a:hover,
.header-nav a,
.header-utility a,
.page-footer a,
.footer-name a,
.footer-contact a,
.footer-links a,
.footer-associated a,
.footer-utility a,
.btn,
.btn-primary,
.btn-secondary,
.btn-navy,
.btn-arrow,
.btn-small,
.registration-link,
.sponsor-link,
.floating-register-cta .btn,
a[class*="btn"] {
  /* These keep their own colors - DO NOT override */
}






/* Arrow Button - Reusable button with arrow accent */
.btn-arrow {
  display: inline-block;
  background: linear-gradient(135deg, #A5C73E 0%, #8fb332 100%);
  color: white;
  text-decoration: none;
  font-size: 1.05rem; /* Matches .btn-small */
  font-weight: 700; /* Matches .btn-small */
  padding: 0.65rem 1.5rem; /* Matches .btn-small */
  border-radius: 25px; /* Matches .btn-small */
  transition: all 0.3s ease;
  box-shadow: 0 3px 12px rgba(165, 199, 62, 0.25);
}
.btn-arrow::after {
  content: ' →';
  font-size: 1.2rem;
  transition: transform 0.2s ease;
  display: inline;
}
.btn-arrow:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 18px rgba(165, 199, 62, 0.35);
  color: white;
}
.btn-arrow:hover::after {
  transform: translateX(3px);
  display: inline-block; /* Allows transform to work */
}
.btn-arrow:focus-visible {
  outline: 3px solid rgba(59, 156, 212, 0.45);
  outline-offset: 3px;
}
/* Responsive */
@media (max-width: 768px) {
  .btn-arrow {
    padding: 0.6rem 1.35rem; /* Matches .btn-small */
    font-size: 1rem; /* Matches .btn-small */
  }
  .btn-arrow::after {
    font-size: 1.1rem;
  }
}
/* Small Button - for secondary links and supplementary CTAs */
.btn-small {
  display: inline-block;
  padding: 0.65rem 1.5rem;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 25px;
  transition: all 0.3s ease;
  border: 3px solid #A5C73E;
  color: #A5C73E;
  background: transparent;
}
.btn-small:hover {
  background: #A5C73E;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(165, 199, 62, 0.3);
}
/* Responsive */
@media (max-width: 768px) {
  .btn-small {
    font-size: 1rem;
    padding: 0.6rem 1.35rem;
  }
}
/* ==========================================================================
   2. LAYOUT & CONTAINERS
   ========================================================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ==========================================================================
   3. UTILITY CLASSES & DIVIDERS
   ========================================================================== */
.section-divider-top {
  position: relative;
}
.section-divider-top::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 75%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #A5C73E 50%, transparent 100%);
}
.diagonal-divider-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  clip-path: polygon(0 0, 100% 0, 100% 50%, 0 100%);
  margin-top: -99px;
}
.diagonal-divider-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  clip-path: polygon(0 50%, 100% 0, 100% 100%, 0 100%);
  margin-bottom: -99px;
}
/* ==========================================================================
   4. TYPOGRAPHY & SECTION HEADERS
   ========================================================================== */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header h2 {
  font-size: 2.1rem !important;
  color: #1e3a5f;
  margin-bottom: 1.5rem !important;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  position: relative;
  display: inline-block;
  padding-bottom: 0.5rem;
}


/* Only add space below h2 when a paragraph follows it */
.section-header h2 + p,
.section-header h2 + .section-subtitle {
    margin-top: 1rem;
}




.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 2px;
  background: linear-gradient(90deg, rgba(30, 58, 95, 0) 0%, rgba(30, 58, 95, 0.3) 10%, rgba(30, 58, 95, 0.7) 25%, rgba(30, 58, 95, 1) 50%, rgba(30, 58, 95, 0.7) 75%, rgba(30, 58, 95, 0.3) 90%, rgba(30, 58, 95, 0) 100%);
  border-radius: 1px;
}
.section-header p, .section-subtitle {
  font-size: 1.2rem;
  color: #4a5568;
  font-style: italic;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}
/* Left-aligned variant */
.section-header.left-align {
  text-align: left;
}
.section-header.left-align h2 {
  display: block; /* Change from inline-block */
}
.section-header.left-align h2::after {
  left: 0; /* Align line to left edge */
  transform: translateX(0); /* Remove centering */
}
.section-header.left-align p, .section-header.left-align .section-subtitle {
  margin: 0; /* Remove auto centering */
  max-width: 800px; /* Keep max-width for readability */
}
/* Mobile: Left-align variant centers on mobile */
@media (max-width: 968px) {
  .section-header.left-align {
    text-align: center; /* ✅ Center on mobile */
  }
  .section-header.left-align h2::after {
    left: 50%; /* ✅ Center the underline */
    transform: translateX(-50%); /* ✅ Center the underline */
  }
  .section-header.left-align p, .section-header.left-align .section-subtitle {
    margin: 0 auto; /* ✅ Center text on mobile */
  }
}
/* ==========================================================================
   5. BUTTONS
   ========================================================================== */
.btn {
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 2.5rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.025rem;
}
.btn-primary {
  background: linear-gradient(135deg, #A5C73E 0%, #8fb332 100%);
  color: white !important;
  text-decoration: none !important;
  box-shadow: 0 0.5rem 1.5rem rgba(165, 199, 62, 0.3);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #8fb332 0%, #7a9c2b 100%) !important;
  color: white !important;
  text-decoration: none !important;
  transform: translateY(-0.15rem);
  box-shadow: 0 0.75rem 2rem rgba(165, 199, 62, 0.4);
}
.btn-secondary {
  background: white;
  color: #1e3a5f;
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.9);
  color: #1e3a5f;
  transform: translateY(-0.15rem);
}
.btn-navy {
  background: #1e3972;
  color: white !important;
  border: none;
  box-shadow: 0 6px 20px rgba(47, 90, 168, 0.35);
  text-decoration: none;
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  display: inline-block;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.btn-navy:hover {
  background: white;
  color: #2F5AA8 !important;
  transform: translateY(-3px);

  box-shadow: 0 10px 30px rgba(47, 90, 168, 0.4);
  text-decoration: none;
}
/* ==========================================================================
   6. NOTICES/TOP ANNOUNCEMENT BARS
   ========================================================================== */
/*Alert notice can be used in place of orange announcement bar for simplicity */
.alert-bar {
  text-align: center;
  padding: .35rem 1rem;
  margin-bottom: 2rem;
}
.alert-bar p {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.3;
  font-weight: 600;
  letter-spacing: 0;
  color: #1e3a5f; /* navy */
}
.alert-bar p span {
  color: #C86A2F; /* orange */
  font-weight: 700;
  white-space: nowrap;
}
.conference-announcement-bar {
  background: linear-gradient(135deg, #F2A81D 0%, #e09915 100%);
  color: white;
  text-align: center;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}
.conference-announcement-bar a {
  color: white;
  text-decoration: underline;
  font-weight: 700;
}
.conference-announcement-bar a:hover {
  opacity: 0.9;
}
/* ==========================================================================
   8. HERO SECTION
   ========================================================================== */
.hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
 background: linear-gradient(135deg, #183149 0%, #2f5789 50%, #0a1625 100%);
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 6rem;
}
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 35rem;
  height: 35rem;
  background: radial-gradient(circle, rgba(165, 199, 62, 0.25) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -15%;
  left: -5%;
  width: 30rem;
  height: 30rem;
  background: radial-gradient(circle, rgba(165, 199, 62, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 10s ease-in-out infinite reverse;
}
@keyframes float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(1.5rem, -1.5rem) scale(1.1);
  }
}
.hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}
.shape {
  position: absolute;
  opacity: 0.1;
  animation: shapeFloat 8s ease-in-out infinite;
}
@keyframes shapeFloat {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0.08;
  }
  25% {
    opacity: 0.12;
  }
  50% {
    transform: translate(1rem, -1rem) rotate(180deg);
    opacity: 0.15;
  }
  75% {
    opacity: 0.12;
  }
}
.shape-1 {
  top: 10%;
  left: 10%;
  width: 5rem;
  height: 5rem;
  background: #A5C73E;
  transform: rotate(45deg);
  animation-delay: 0s;
}
.shape-2 {
  top: 60%;
  right: 15%;
  width: 7.5rem;
  height: 7.5rem;
  border: 0.15rem solid #A5C73E;
  border-radius: 50%;
  animation-delay: 1s;
}
.shape-3 {
  bottom: 20%;
  left: 20%;
  width: 4rem;
  height: 4rem;
  background: #A5C73E;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  animation-delay: 2s;
}
.shape-4 {
  top: 30%;
  right: 30%;
  width: 3rem;
  height: 3rem;
  background: rgba(165, 199, 62, 0.15);
  border-radius: 50%;
  animation-delay: 0.5s;
  animation-duration: 6s;
}
.shape-5 {
  bottom: 40%;
  left: 40%;
  width: 4.5rem;
  height: 4.5rem;
  border: 0.1rem solid rgba(165, 199, 62, 0.2);
  transform: rotate(30deg);
  animation-delay: 1.5s;
  animation-duration: 10s;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 50rem;
  padding: 2rem;
  margin: 0 auto;
  animation: fadeInUp 1s ease-out;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(1.5rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-title {
  font-size: 3rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  line-height: 1.2;
}
.conference-logo {
  margin: 1.5rem auto;
  width: 12.5rem;
  max-width: 90%;
  overflow: hidden;
  border-radius: 0.6rem;
  border: 0.15rem solid #A5C73E;
  box-shadow: 0 0.2rem 0.75rem rgba(165, 199, 62, 0.3);
}
.conference-logo img {
  width: 100%;
  height: auto;
  display: block;
}
.hero h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #A5C73E;
  margin-bottom: 1rem;
  line-height: 1.1;
  text-shadow: 0 0.1rem 0.5rem rgba(0, 0, 0, 0.3);
  font-style: italic;
  letter-spacing: 0.05rem;
}
.hero-subtitle {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2rem;
  font-weight: 300;
}
.hero-date {
  margin-top: 3rem;
  font-size: 2.2rem;
  color: white;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.hero-location {
  font-size: 1.8rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2.5rem;
}
.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
/* ==========================================================================
   9. DATE CALLOUT
   ========================================================================== */
.date-callout {
  background: #F4F8EE;
  padding: 1.25rem 1.75rem;
  border-radius: 8px;
  border-left: 4px solid #A5C73E;
  margin: 2rem auto;
  max-width: 900px;
  position: relative;
  z-index: 10;
}
.date-callout p {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: #1E3A5F;
  line-height: 1.55;
}
.date-callout strong {
  color: #8FB332;
}
/* ==========================================================================
   10. INTRO SECTION
   ========================================================================== */
.intro-section {
  background: white;
  position: relative;
  padding: 5rem 0 1rem 0;
  z-index: 10;
}
.intro-section .diagonal-divider-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: white;
  clip-path: polygon(0 0, 100% 0, 100% 50%, 0 100%);
  margin-top: -99px;
}
.intro-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 0 2rem 1rem 2rem;
}
.intro-content h2 {
  font-size: 2.5rem;
  color: #1e3a5f;
  margin-bottom: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
}
.intro-content p {
  font-size: 1.2rem;
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.intro-content p:last-child {
  margin-bottom: 0;
}
/* ==========================================================================
   11. DISCOVER SECTION
   ========================================================================== */
.discover {
  background: white;
  position: relative;
  padding: 3rem 0 7rem 0;
}
.discover-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-top: 2rem;
}
.discover-items {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.discover-item {
  padding-left: 1.5rem;
  border-left: 4px solid #2C5F7F;
}
.discover-item h3 {
  font-size: 1.5rem;
  color: #121559;
  margin-bottom: 0.5rem;
  font-weight: 700;
}
.discover-item p {
  color: #718096;
  line-height: 1.6;
  font-size: 1.2rem;
}
.stats-card {
  background: linear-gradient(135deg, #1e3a5f 0%, #2c5282 100%);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(30, 58, 95, 0.2);
  color: white;
  height: fit-content;
  position: sticky;
  top: 2rem;
}
.stat-item {
  text-align: center;
  padding: 2rem 0;
}
.stat-item:first-child {
  border-bottom: 1px solid rgba(165, 199, 62, 0.3);
  margin-bottom: 2rem;
}
.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: #A5C73E;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
}
/* ==========================================================================
   12. CONFERENCE IMAGES
   ========================================================================== */
.conf-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.10);
  transition: all 0.3s ease;
}
.conf-img:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.conf-img-row {
  margin-top: 3rem;
  margin-bottom: 4rem;
}
/* ==========================================================================
   13. WHY ATTEND SECTION
   ========================================================================== */
.why-attend {
  background: #f8f9fa;
  position: relative;
  padding: 2rem 0 2rem 0;
}
.why-attend .conf-img-row {
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}
.feature-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.feature-card {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
}
.feature-card:nth-child(1)::before {
  background: #A5C73E;
}
.feature-card:nth-child(2)::before {
  background: #3B9CD4;
}
.feature-card:nth-child(3)::before {
  background: #A5C73E;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}
.feature-icon {
  width: 84px;
  height: 84px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid #e2e8f0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.10);
}
.feature-card:nth-child(1) .feature-icon {
  border-color: #C5D932;
}
.feature-card:nth-child(2) .feature-icon {
  border-color: #3B9CD4;
}
.feature-card:nth-child(3) .feature-icon {
  border-color: #F2A81D;
}
/* Icon 1 - Learning */
.feature-card:nth-child(1) .feature-icon::before {
  content: "";
  position: absolute;
  width: 32px;
  height: 40px;
  border-radius: 6px;
  background: #23468C;
  box-shadow: 0 0 0 2px #ffffff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.feature-card:nth-child(1) .feature-icon::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 2px;
  background: #C5D932;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 5px 0 #ffffff, 0 9px 0 #ffffff;
}
/* Icon 2 - Networking */
.feature-card:nth-child(2) .feature-icon::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #3B9CD4;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) translateX(-15px);
  box-shadow: 30px 0 0 #23468C;
}
.feature-card:nth-child(2) .feature-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(to right, #3B9CD4, #23468C);
}
/* Icon 3 - Inspiration */
.feature-card:nth-child(3) .feature-icon::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(rgba(242, 168, 29, 0.35), transparent);
  z-index: -1;
}
.feature-card:nth-child(3) .feature-icon::before {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  background: #F2A81D;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  clip-path: polygon(50% 0%, 62% 35%, 100% 38%, 70% 58%, 82% 100%, 50% 76%, 18% 100%, 30% 58%, 0% 38%, 38% 35%);
}
.feature-card h3 {
  font-size: 1.4rem;
  color: #2d3748;
  margin-bottom: 1rem;
}
.feature-card p {
  color: #718096;
  line-height: 1.7;
}
/* ==========================================================================
   14. REGISTRATION CALLOUT
   ========================================================================== */
.registration-callout {
  background: linear-gradient(135deg, #D27A3B 0%, #c46d2f 100%);
  position: relative;
  padding: 5rem 0;
  color: white;
  overflow: hidden;
}
.registration-callout::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 30rem;
  height: 30rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}
.registration-callout::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 35rem;
  height: 35rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}
.registration-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}
.registration-content h2 {
  font-size: 2.7rem;
  color: white;
  margin-bottom: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}



.registration-content h3 {
  font-size: 1.5rem;
  color: white;
  margin-bottom: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.registration-content .price-highlight {
  font-size: 2.2rem;
  color: white;
  font-weight: 800;
  margin: 1.5rem 0;
  background: rgba(255, 255, 255, 0.25);
  padding: 1.25rem 2.5rem;
  border-radius: 12px;
  display: inline-block;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
.registration-content p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
  margin-bottom: 2.5rem;
}
.registration-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.registration-link {
  padding: 1.1rem 2.75rem;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.registration-link-primary {
  background: white;
  color: #F2A81D;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}
.registration-link-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
  background: #f8f9fa;
}
.registration-link-secondary {
  background: transparent;
  color: white;
  border: 3px solid white;
}
.registration-link-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
}







/* ==========================================================================
   16. CTA BANNERS
   ========================================================================== */
.cta-banner-primary {
  background: linear-gradient(135deg, #1e3a5f 0%, #2980b9 100%);
  color: #ffffff !important;
  padding: 5rem 0 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner-primary .diagonal-divider-top, .cta-banner-primary .diagonal-divider-bottom {
  background: linear-gradient(135deg, #1e3a5f 0%, #2980b9 100%);
}
.cta-banner-primary::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(165, 199, 62, 0.08);
  border-radius: 50%;
}
.cta-primary-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem 2rem 2rem;
}
.cta-banner-primary h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 800;
  color: #ffffff;
}
.cta-banner-primary p {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.btn-primary-cta {
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  background: linear-gradient(135deg, #A5C73E 0%, #8fb332 100%);
  color: white;
  box-shadow: 0 10px 30px rgba(165, 199, 62, 0.3);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.btn-primary-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(165, 199, 62, 0.4);
}
.cta-banner-secondary {
  background: #f8f9fa;
  padding: 4rem 0;
  text-align: center;
  position: relative;
}
.cta-banner-secondary .diagonal-divider-top, .cta-banner-secondary .diagonal-divider-bottom {
  background: #f8f9fa;
}
.cta-secondary-content {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border-top: 3px solid #3B9CD4;
}
.cta-banner-secondary h2 {
  font-size: 2rem;
  color: #1e3a5f;
  margin-bottom: 1rem;
  font-weight: 700;
}
.cta-banner-secondary p {
  font-size: 1.1rem;
  color: #4a5568;
  margin-bottom: 2rem;
  line-height: 1.6;
}
.btn-secondary-cta {
  padding: 0.85rem 2rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  background: transparent;
  color: #3B9CD4;
  border: 2px solid #3B9CD4;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.btn-secondary-cta:hover {
  background: #3B9CD4;
  color: white;
  transform: translateY(-2px);
}
/* ==========================================================================
   17. TESTIMONIALS
   ========================================================================== */
.testimonials {
  background: white;
  position: relative;
  padding: 5rem 0 5rem 0;
}
.testimonials .diagonal-divider-top, .testimonials .diagonal-divider-bottom {
  background: white;
}
.quote-container {
  max-width: 900px;
  margin: 0 auto;
}
.quote {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 3rem;
  margin-bottom: 2rem;
  border-radius: 16px;
  border-left: 5px solid #3B9CD4;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}
.quote:nth-child(2) {
  border-left-color: #A5C73E;
}
.quote:nth-child(3) {
  border-left-color: #3B9CD4;
}
.quote-text {
  font-size: 1.3rem;
  color: #2d3748;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.quote-author {
  font-size: 1.1rem;
  color: #718096;
  font-weight: 600;
  text-align: right;
}
/* ==========================================================================
   18. WHO SHOULD ATTEND
   ========================================================================== */
.who-attend {
  background: #f8f9fa;
  padding: 6rem 0 7rem 0;
}
.who-attend-content {
  max-width: 1200px;
  margin: 0 auto;
  background: white;
  padding: 3.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}
.who-attend-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}
.who-item {
  padding-left: 1.5rem;
  border-left: 4px solid #A5C73E;
}
.who-item h3 {
  font-size: 1.5rem;
  color: #1e3a5f;
  margin-bottom: 0.15rem;
  font-weight: 700;
  line-height: 1.2;
}
.who-item p {
  color: #2d3748;
  font-size: 1.1rem;
  line-height: 1.6;
}
/* ==========================================================================
   19. SCHOLARSHIP SECTION
   ========================================================================== */
.scholarship-giveaway {
  padding: 5rem 0 4rem 0;
  position: relative;
}
.scholarship-giveaway .grid {
  gap: 5rem;
  align-items: start;
}
.scholarship-intro {
  font-size: 1.15rem;
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 3rem;
}
.scholarship-item {
  margin-bottom: 3.5rem;
  padding-bottom: 3rem;
  border-bottom: 2px solid #e2e8f0;
}
.scholarship-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.scholarship-item h3 {
  font-size: 1.8rem;
  color: #1e3a5f;
  margin-bottom: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
  position: relative;
  padding-left: 2.5rem;
}
.scholarship-item h3::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: -0.1rem;
  font-size: 1.6rem;
  color: #A5C73E;
  font-weight: bold;
}
.scholarship-item:last-child h3::before {
  color: #3B9CD4;
}
.scholarship-item p {
  font-size: 1.15rem;
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 0.75rem;
  padding-left: 2.5rem;
}
.scholarship-item p:last-of-type {
  margin-bottom: 1.5rem;
}
.scholarship-item p strong {
  color: #1e3a5f;
  font-weight: 700;
}
.scholarship-item a {
  color: #3B9CD4;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  padding-left: 2.5rem;
}
.scholarship-item a:hover {
  color: #1e3a5f;
}
.scholarship-apply {
  display: inline-block;
  background: linear-gradient(135deg, #A5C73E 0%, #8fb332 100%);
  color: white !important;
  text-decoration: none;
  font-size: 0.95rem !important;
  font-weight: 600;
  padding: 0.4rem 1.15rem !important;
  border-radius: 18px !important;
  transition: all 0.3s ease;
  box-shadow: 0 3px 12px rgba(165, 199, 62, 0.25);
  letter-spacing: 0;
  margin-left: 0;
  margin-top: 1.1rem;
}
.scholarship-apply::after {
  content: ' →';
  font-size: 1rem;
  transition: transform 0.2s ease;
  display: inline;
}
.scholarship-apply:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 18px rgba(165, 199, 62, 0.35);
  color: white !important;
}
.scholarship-apply:hover::after {
  transform: translateX(3px);
}
.scholarship-apply:focus-visible {
  outline: 3px solid rgba(59, 156, 212, 0.45);
  outline-offset: 3px;
}
.scholarship-giveaway .conf-img {
  height: 300px;
}
.scholarship-image {
  width: 100%;
  height: 550px;
  object-fit: cover;
  object-position: center top;
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}
.scholarship-image:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}
/* ==========================================================================
   SPONSOR CALLOUT
   ========================================================================== */
.sponsor-callout {
  background: linear-gradient(135deg, #3B9CD4 0%, #2c5282 100%);
  position: relative;
  padding: 5rem 0 7rem 0;
  color: white;
}
.sponsor-callout .diagonal-divider-top, .sponsor-callout .diagonal-divider-bottom {
  background: linear-gradient(135deg, #3B9CD4 0%, #2c5282 100%);
}
.sponsor-callout::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 25rem;
  height: 25rem;
  background: rgba(165, 199, 62, 0.1);
  border-radius: 50%;
}
.sponsor-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 0 2rem 2rem 2rem;
  position: relative;
  z-index: 1;
}
.sponsor-content h2 {
  font-size: 3rem;
  color: white;
  margin-bottom: 1rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.sponsor-subtitle {
  font-size: 1.6rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 1.5rem;
  font-weight: 400;
  line-height: 1.4;
}
.sponsor-content p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 2.5rem;
}
.sponsor-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  padding-bottom: 1rem;
}
.sponsor-link {
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.sponsor-link-primary {
  background: linear-gradient(135deg, #A5C73E 0%, #8fb332 100%);
  color: white;
  box-shadow: 0 10px 30px rgba(165, 199, 62, 0.3);
}
.sponsor-link-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(165, 199, 62, 0.4);
}
.sponsor-link-secondary {
  background: white;
  color: #2c5282;
}
.sponsor-link-secondary:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-3px);
}
/* ==========================================================================
   DESTINATION SECTION
   ========================================================================== */
.destination {
  background: white;
  padding: 5rem 0;
}
.destination .section-header {
  margin-bottom: 1.5rem;
}

.info-card {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #A5C73E;
  height: 100%;
}
.info-card h3 {
  font-size: 1.5rem;
  color: #1e3a5f;
  margin-bottom: 1rem;
  font-weight: 700;
}
.info-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.info-card li {
  font-size: 1.05rem;
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
}
.info-card li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #A5C73E;
  font-weight: bold;
}
.info-card.hotel {
  border-left-color: #3B9CD4;
}
.info-card.hotel ul li::before {
  color: #3B9CD4;
}
.info-card a {
  color: #3B9CD4;
  text-decoration: none;
  transition: color 0.3s ease;
}
.info-card a:hover {
  color: #2F5AA8;
}
.destination-hero-image {
  width: 100%;
  height: 500px;
  background: url('https://www.ncra.org/images/default-source/uploadedimages/events/convention/2026-conference-graphics/hyatt-regency-bellevue.jpg?sfvrsn=cb5677f6_5/Hyatt-Regency-Bellevue.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  margin-top: 3rem;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  overflow: hidden;
}
/* ==========================================================================
   PAST CONFERENCE HIGHLIGHTS
   ========================================================================== */
.past-conference-highlights {
  background: #f8f9fa;
  padding: 4rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}
.past-conference-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}
.past-conference-content h2 {
  font-size: 2.2rem;
  color: #1e3a5f;
  margin-bottom: 1rem;
  font-weight: 700;
}
.past-conference-intro {
  font-size: 1.15rem;
  color: #4a5568;
  margin-bottom: 2rem;
  line-height: 1.6;
}
.past-conference-links {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}
.past-conference-links li {
  margin-bottom: 1.25rem;
  padding-left: 2rem;
  position: relative;
  font-size: 1.2rem;
}
.past-conference-links li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #A5C73E;
  font-weight: bold;
  font-size: 1.3rem;
}
.past-conference-links a {
  color: #2F5AA8;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}
.past-conference-links a:hover {
  color: #1e3a5f;
  text-decoration: underline;
}
.past-conference-note {
  font-size: 0.95rem;
  color: #718096;
  font-style: italic;
  margin-top: 2rem;
}
/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.faq-section {
  background: #f8f9fa;
  padding: 5rem 0 7rem 0;
}
.faq-container {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}
.faq-section .faq-title {
  font-size: 2.1rem;
  color: #1e3a5f;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  text-align: left;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
  border-bottom: 3px solid #A5C73E;
}
/* ==========================================================================
   25. RESPONSIVE DESIGN - TABLET
   ========================================================================== */
@media (max-width: 968px) {
  /* Hero */
  .hero-title {
    font-size: 2.5rem;
    letter-spacing: 0.075rem;
  }
  .hero h2 {
    font-size: 1.8rem;
  }
  .hero-subtitle {
    font-size: 1.2rem;
  }
  /* Section Headers */
  .section-header {
    margin-bottom: 2rem;
  }
  .section-header h2 {
    font-size: 1.6rem;
  }
  .section-header h2::after {
    width: 100px;
  }
  .section-header p, .section-subtitle {
    font-size: 1.05rem;
  }
  /* Sections */
  .intro-section {
    padding: 3rem 0 2rem 0;
  }
  .intro-content h2 {
    font-size: 1.8rem;
  }
  .intro-content p {
    font-size: 1.1rem;
    line-height: 1.5;
  }
  .discover {
    padding: 3rem 0 5rem 0;
  }
  .discover-content {
    grid-template-columns: 1fr;
  }
  .stats-card {
    position: static;
  }
  .conf-img {
    height: 280px;
  }
  .why-attend {
    padding: 3rem 0 5rem 0;
  }
  .registration-callout {
    padding: 3rem 0;
  }
  .registration-content h2 {
    font-size: 2rem;
  }
  .registration-content .price-highlight {
    font-size: 1.6rem;
    padding: 1rem 1.75rem;
  }
  .registration-content p {
    font-size: 1rem;
  }
  .registration-links {
    flex-direction: column;
  }
  .registration-link {
    width: 100%;
    text-align: center;
  }
  
  .cta-banner-primary {
    padding: 3rem 0 4rem 0;
  }
  .cta-banner-primary h2 {
    font-size: 2rem;
  }
  .cta-banner-primary p {
    font-size: 1rem;
  }
  .cta-banner-primary .diagonal-divider-top, .cta-banner-primary .diagonal-divider-bottom {
    height: 50px;
  }
  .cta-banner-primary .diagonal-divider-top {
    margin-top: -49px;
  }
  .cta-banner-primary .diagonal-divider-bottom {
    margin-bottom: -49px;
  }
  .cta-banner-secondary {
    padding: 3rem 0;
  }
  .cta-secondary-content {
    padding: 2rem;
  }
  .cta-banner-secondary h2 {
    font-size: 1.6rem;
  }
  .cta-banner-secondary p {
    font-size: 1rem;
  }
  .cta-banner-secondary .diagonal-divider-top, .cta-banner-secondary .diagonal-divider-bottom {
    height: 50px;
  }
  .cta-banner-secondary .diagonal-divider-top {
    margin-top: -49px;
  }
  .cta-banner-secondary .diagonal-divider-bottom {
    margin-bottom: -49px;
  }
  .testimonials {
    padding: 3rem 0 5rem 0;
  }
  .quote-text {
    font-size: 1.2rem;
  }
  .who-attend {
    padding: 3rem 0;
  }
  .who-attend-content {
    padding: 2rem 1.5rem;
  }
  .who-attend-list {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .scholarship-giveaway {
    padding: 3rem 0;
  }
  .scholarship-giveaway .grid {
    gap: 2.5rem;
  }
  .scholarship-item {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
  }
  .scholarship-item h3 {
    font-size: 1.5rem;
    padding-left: 2rem;
  }
  .scholarship-item h3::before {
    font-size: 1.4rem;
  }
  .scholarship-item p {
    font-size: 1.05rem;
    padding-left: 2rem;
    line-height: 1.6;
    margin-bottom: 0.7rem;
  }
  .scholarship-apply {
    margin-left: 0;
    padding: 0.4rem 1.15rem !important;
    font-size: 0.85rem !important;
  }
  .scholarship-giveaway .conf-img {
    height: 280px;
  }
  .scholarship-image {
    height: 350px;
    margin-top: 2rem;
  }
  .keynote-announcement {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  .keynote-image {
    width: 250px;
    height: 250px;
    margin: 0 auto;
  }
  .keynote-content {
    text-align: center;
  }
  .keynote-content h2 {
    font-size: 2rem;
  }
  .keynote-title {
    font-size: 1.1rem;
  }
  .keynote-intro {
    font-size: 1rem;
  }
  .sponsor-callout {
    padding: 3rem 0 5rem 0;
  }
  .sponsor-content {
    padding: 0 1.5rem 2rem 1.5rem;
  }
  .sponsor-content h2 {
    font-size: 2rem;
  }
  .sponsor-subtitle {
    font-size: 1.2rem;
  }
  .sponsor-content p {
    font-size: 1rem;
  }
  .sponsor-links {
    flex-direction: column;
    padding-bottom: 1.5rem;
  }
  .sponsor-link {
    width: 100%;
    text-align: center;
  }
  .sponsor-callout .diagonal-divider-top, .sponsor-callout .diagonal-divider-bottom {
    height: 50px;
  }
  .sponsor-callout .diagonal-divider-top {
    margin-top: -49px;
  }
  .sponsor-callout .diagonal-divider-bottom {
    margin-bottom: -49px;
  }
  .destination {
    padding: 3rem 0;
  }
  .destination .section-header {
    margin-bottom: 1.25rem;
  }
  
  .destination-hero-image {
    height: 300px;
    background-attachment: scroll;
    margin-top: 2rem;
  }
  .past-conference-highlights {
    padding: 3rem 0;
  }
  .past-conference-content h2 {
    font-size: 1.8rem;
  }
  .past-conference-intro {
    font-size: 1rem;
  }
  .past-conference-links li {
    font-size: 1rem;
  }
  .faq-section {
    padding: 3rem 0 5rem 0;
  }
  .faq-container {
    padding: 2rem 1.5rem;
  }
  .faq-section .faq-title {
    font-size: 1.8rem;
  }
  .section-divider-top::before {
    width: 80%;
  }
}
/* ==========================================================================
   26. RESPONSIVE DESIGN - MOBILE
   ========================================================================== */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
    letter-spacing: 0.05rem;
    line-height: 1.3;
  }
  .hero h2 {
    font-size: 1.5rem;
  }
  .hero-date {
    font-size: 1.8rem;
  }
  .hero-location {
    font-size: 1.4rem;
  }
  .conf-img {
    height: 250px;
  }
  .scholarship-giveaway .conf-img {
    height: 250px;
  }
 
}
@media (max-width: 480px) {
  .hero-title {
    font-size: 1.5rem;
    letter-spacing: 0.025rem;
    line-height: 1.3;
  }
  .hero h2 {
    font-size: 1.3rem;
  }
  .hero-date {
    font-size: 1.5rem;
  }
  .hero-location {
    font-size: 1.2rem;
  }
  .btn {
    padding: 0.8rem 2rem;
    font-size: 0.9rem;
  }
}
/* ==========================================================================
   DESKTOP NAVIGATION - CENTER WHEN BRAND HIDDEN
   ========================================================================== */
@media (min-width: 969px) {
  .nav-brand {
    display: none;
  }
  .conference-nav .container {
    justify-content: center;
  }
}
/*these were the new styles to center- remove any dups above*/
/* ============================================
   CONFERENCE NAVIGATION - Centered & Responsive
   ============================================ */
.conf-navigation {
  background: rgba(91, 164, 207, 0.85);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  position: sticky;
  position: -webkit-sticky;
  top: 0;

  z-index: 1;
  width: 100%;
  margin-top: 15px;
}
.conf-nav-wrapper {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: center;
  align-items: stretch;
  padding-left: 2rem;
  padding-right: 2rem;
  min-height: 90px;
  box-sizing: border-box;
}
/* Mobile Menu Toggle - HIDDEN on desktop */
.conf-menu-toggle {
  display: none;
}
@media (max-width: 992px) {
  .conf-nav-wrapper {
    justify-content: center;
    padding: 1.25rem 1rem;
    min-height: 65px;
    flex-wrap: wrap;
  }
  .conf-menu-toggle {
    display: inline-flex;
    align-items: center;
    background: white;
    border: none;
    cursor: pointer;
    padding: 0.65rem 1rem;
    border-radius: 4px;
    font-weight: 600;
    color: #2c5282;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    font-family: 'Proxima Nova', Arial, sans-serif;
    order: 1;
  }
  .conf-menu-toggle::after {
    content: '▼';
    font-size: 0.65rem;
    transition: transform 0.3s ease;
    display: inline-block;
    margin-left: 0.4rem;
  }
  .conf-menu-toggle.active::after {
    transform: rotate(180deg);
  }
  .conf-menu-toggle:hover {
    background: rgba(240, 244, 248, 1);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  }
}
/* Navigation Menu - Desktop horizontal */
.conf-nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: stretch;
  gap: 0;
}
@media (max-width: 992px) {
  .conf-nav-menu {
    display: none;
    width: 100%;
    flex-basis: 100%;
    background: rgba(91, 164, 207, 0.95);
    flex-direction: column;
    padding: 1rem 0;
    margin-top: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 0 0 4px 4px;
    order: 2;
  }
  .conf-nav-menu.active {
    display: flex;
    animation: slideDown 0.3s ease;
  }
}
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.conf-nav-menu li {
  margin: 0;
  position: relative;
  display: flex;
  align-items: stretch;
}
@media (max-width: 992px) {
  .conf-nav-menu li {
    width: 100%;
  }
}
/* Navigation Links */
.conf-nav-menu a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  padding: 1.3rem 1.75rem;
  transition: all 0.3s ease;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  font-family: 'Proxima Nova', Arial, sans-serif;
}
@media (max-width: 992px) {
  .conf-nav-menu a {
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
    white-space: normal;
  }
}
/* Hover State */
.conf-nav-menu a:not(.active):not(.conf-nav-cta):hover {
  background: rgba(255, 255, 255, 0.1);
}
.conf-nav-menu a:not(.active):not(.conf-nav-cta):hover::before {
  content: '';
  position: absolute;
  bottom: 10px;
  left: 1.75rem;
  right: 1.75rem;
  height: 2px;
  background: rgba(255, 255, 255, 0.5);
}
@media (max-width: 992px) {
  .conf-nav-menu a:not(.active):not(.conf-nav-cta):hover::before {
    display: none;
  }
  .conf-nav-menu a:not(.active):not(.conf-nav-cta):hover {
    background: rgba(255, 255, 255, 0.15);
    padding-left: 1.8rem;
  }
}
/* Active State */
.conf-nav-menu a.active {
  background: rgba(67, 138, 179, 0.9);
  font-weight: 600;
}
/* V-Notch - Desktop only */
.conf-nav-menu a.active::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 8px solid rgba(67, 138, 179, 0.95);
  z-index: 10;
}
@media (max-width: 992px) {
  .conf-nav-menu a.active::after {
    display: none;
  }
  .conf-nav-menu a.active {
    border-left: 4px solid #A5C73E;
    padding-left: calc(1.5rem - 4px);
  }
}


/* Nav CTA Button */

.conf-nav-cta {
  background: #fff !important;
  color: #2c5282 !important;
  font-weight: 500 !important;
  text-decoration: none !important;
  transition: all 0.2s ease !important;
}

.conf-nav-cta:hover,
.conf-nav-cta:focus-visible {
  background: #eef2f6 !important;
  color: #2c5282 !important;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.14) !important;
  transform: translateY(-1px) !important;
}





.conf-nav-cta:hover::before {
  display: none !important;
}
@media (max-width: 992px) {
  .conf-nav-cta {
    margin: 0.5rem 1rem !important;
    border-radius: 4px !important;
    text-align: center;
    justify-content: center;
  }
}
/*end of new nav styles */

/* QUESTIONS CONTACT BOX - Interior Page Aside */
.questions-box {
  font-family: 'Proxima Nova', Arial, sans-serif;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  border-left: 1px solid #D27A3B;
}
.questions-box h3 {
  font-family: 'Proxima Nova', Arial, sans-serif;
  color: #1e3a5f;
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0 0 1.25rem 0;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #e8eef5;
}
.questions-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.questions-box li {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: normal;
  line-height: 1.6;
  color: #333;
}
.questions-box li:last-child {
  margin-bottom: 0;
}
.questions-box strong {
  color: #1e3a5f;
  font-weight: 600; 
  display: inline; 
  margin-bottom: 0; 
}


.questions-box a {
  color: #2F5AA8 !important;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.questions-box a:hover {
  color: #5BA4CF !important;
  text-decoration: underline;
}


@media (max-width: 968px) {
  .questions-box {
    margin-bottom: 1.5rem;
  }
  .questions-box h3 {
    font-size: 1.2rem;
  }
  .questions-box li {
    font-size: 0.95rem;
  }
}
/* ==========================================================================
   REUSABLE ACCORDION/TOGGLE COMPONENT
   Two variants: Standard (default) and Registration (for complex content)
   ========================================================================== */
/* ===== STANDARD ACCORDION (Default - for bios, FAQs, general content) ===== */
.accordion-item {
  border: 1px solid #D1D5DB;
  border-radius: 6px;
  margin-bottom: 1rem;
  background: white;
  overflow: hidden;
  transition: all 0.2s ease;
  clear: both; /* ADD THIS - clears any floats above */
}
.accordion-item:hover {
  border-color: #B8BFC7;
}
/* Toggle Button */
.accordion-toggle {
  width: 100%;
  background: white;
  border: none;
  padding: 0.75rem 1.25rem;
  min-height: 48px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  font-weight: 600;
  color: #1e3a5f;
  transition: background 0.2s ease;
  position: relative;
  font-family: 'Proxima Nova', Arial, sans-serif;
}
@media (max-width: 768px) {
  .accordion-toggle {
    padding: 0.7rem 1rem;
    font-size: 0.95rem;
    min-height: 44px;
  }
}
.accordion-toggle:hover {
  background: #F9FAFB;
}
.accordion-toggle:focus {
  outline: 2px solid #5BA4CF;
  outline-offset: -2px;
  background: #F9FAFB;
}
.accordion-toggle:focus:not(:focus-visible) {
  outline: none;
}
/* Toggle button text */
.accordion-toggle-text {
  flex: 1;
  padding-right: 1rem;
  line-height: 1.3;
}
/* Circular Icon with Plus/X - Burnt Orange */
.accordion-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #C86A2F;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 400;
  color: white;
  transition: all 0.3s ease;
  flex-shrink: 0;
  pointer-events: none;
}
.accordion-toggle:hover .accordion-icon {
  background: #A3521F;
  ;
  transform: scale(1.05);
}
/* Active/Expanded state - KEEP primary burnt orange, just rotate */
.accordion-toggle[aria-expanded="true"] .accordion-icon {
  background: #C86A2F; /* Primary burnt orange when active */
}
/* Plus symbol (default/collapsed) */
.accordion-icon::before {
  content: '+';
  display: block;
  line-height: 1;
  transition: transform 0.3s ease;
}
/* Rotate plus 45° into × when expanded */
.accordion-toggle[aria-expanded="true"] .accordion-icon::before {
  transform: rotate(45deg);
}
/* Content Panel */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 1.25rem;
  background: white;
  position: relative;
  font-family: 'Proxima Nova', Arial, sans-serif;
}
@media (max-width: 768px) {
  .accordion-content {
    padding: 0 1rem;
  }
}
/* Thin rule separator */
.accordion-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 1.25rem;
  right: 1.25rem;
  height: 1px;
  background: #E5E7EB;
  opacity: 0;
  transition: opacity 0.3s ease;
}
@media (max-width: 768px) {
  .accordion-content::before {
    left: 1rem;
    right: 1rem;
  }
}
/* Expanded state - more top padding so text doesn't feel glued to rule */
.accordion-content.open {
  max-height: 5000px;
  padding: 1.5rem 1.25rem 1.25rem 1.25rem;
}
@media (max-width: 768px) {
  .accordion-content.open {
    padding: 1.25rem 1rem 1rem 1rem;
  }
}
/* Show thin rule when expanded */
.accordion-content.open::before {
  opacity: 1;
}
/* Content styling - matches site body text with Proxima Nova */
.accordion-content p {
  font-family: 'Proxima Nova', Arial, sans-serif;
  font-size: 19px;
  font-weight: normal;
  line-height: 1.5;
  color: #374151;
  margin-bottom: 1.25rem;
}
.accordion-content p:last-child {
  margin-bottom: 0;
}
.accordion-content strong {
  color: #1e3a5f;
  font-weight: 700;
}
/* Ensure consistent font rendering */
.accordion-content em, .accordion-content i {
  font-style: italic;
}
.accordion-content a {
  color: #5BA4CF;
  text-decoration: underline;
}
.accordion-content a:hover {
  color: #438AB3;
}


/* ==========================================================================
   REGISTRATION PACKAGE ACCORDION 
   ========================================================================== */

.registration-header,
.registration-title,
.registration-accordion-details,
.registration-accordion-details p,
.registration-accordion-details ul,
.registration-accordion-details li {
  text-align: left;
}

.registration-accordion {
    margin-bottom: 2rem;
    margin: 0 auto;
    width: 100%;
}

.registration-accordion .registration-item.active .registration-accordion-content {
  padding-left: 1.25rem !important;
  padding-right: 1.25rem !important;
}

.registration-item {
    background: white;
    border: 1px solid #D1D5DB;
    border-radius: 6px;
    margin-bottom: 3rem;
    box-shadow: 0 0 0 6px transparent;
    overflow: hidden;
    transition: all 0.2s ease;
}

.registration-item:hover {
    border-color: #B8BFC7;
}

.registration-item.active {
    border-left: 3px solid #D27A3B;
}

/* Early bird discount banner */
.early-bird-banner {
    background: linear-gradient(135deg, #A5C73E 0%, #8fb332 100%);
    color: white;
    padding: 0.6rem 1.25rem;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.5px;
}

/* Button header */
.registration-header {
    width: 100%;
    background: white;
    border: none;
    padding: 1rem 1.25rem;
    min-height: 90px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s ease;
    font-family: 'Proxima Nova', Arial, sans-serif;
    border-bottom: 1px solid #E5E7EB;
}

.registration-header:hover {
    background: #F9FAFB;
}

.registration-header:focus {
    outline: 2px solid #5BA4CF;
    outline-offset: -2px;
    background: #F9FAFB;
}

.registration-header:focus:not(:focus-visible) {
    outline: none;
}

.registration-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e3a5f;
    margin: 0;
    flex: 1;
    padding-right: 1rem;
    line-height: 1.3;
}

.registration-pricing {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    margin-right: 2rem;
}

.price-group {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

.price-label {
    font-size: 0.75rem;
    color: #6b7280;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 0.25rem;
}

.price-amount {
    font-size: 1.35rem;
    font-weight: 700;
    color: #1e3a5f;
}

/* Circular chevron icon */
.accordion-chevron {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #C86A2F;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.registration-header:hover .accordion-chevron {
    background: #A3521F;
    transform: scale(1.05);
}

.registration-item.active .accordion-chevron {
    background: #C86A2F;
}

.accordion-chevron::before {
    content: '+';
    display: block;
    line-height: 1;
    font-weight: 700;
    font-size: 1.5rem;
    color: white;
    transition: transform 0.3s ease;
}

.registration-item.active .accordion-chevron::before {
    transform: rotate(45deg);
}

/* Content panel */
.registration-accordion-content {
    max-height: 0;
    overflow: hidden;
     transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
}

.registration-item.active .registration-accordion-content {
    max-height: 3000px;
    padding: 1rem 1.25rem 1.5rem 1.25rem;
   transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.registration-accordion-details {
    font-family: 'Proxima Nova', Arial, sans-serif;
    padding-left: 0;
}

.registration-accordion-details > p {
    margin: 0 0 0.5rem 0rem;  
    font-weight: 500;
    color: #1e3a5f !important;
    font-size: 1.05rem;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.registration-accordion-details ul {
    margin: 0;
    padding: 0;
    list-style: none !important;
    margin-left: 0; 
}

.registration-accordion-details li {
    padding: 0.65rem 0;
    color: #374151;
    font-size: 1.15rem;
    line-height: 1.5;
    position: relative;
    padding-left: 1.75rem;
    text-align: left;
}

.registration-accordion-details li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #A5C73E;
    font-weight: 700;
    font-size: 1.4rem;
}

/* Registration  Inner accordion content */
  
.day-package {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #E5E7EB;
}

.day-package:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.day-package-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1e3a5f;
    margin: 0 0 0.75rem 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    min-height: 3.5rem;
}

.day-package-title > span {
    flex: 1;
    padding-right: 1rem;
}

.day-package-pricing {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    flex-shrink: 0;
    margin-right: calc(2rem + 28px);
}

.day-package-pricing .price-group {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    align-items: flex-end;
    text-align: right;
}

.day-package-pricing .price-label {
    font-size: 0.7rem;
    color: #6b7280;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.day-package-pricing .price-amount {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1e3a5f;
}

.day-package ul {
    margin-top: 0.75rem;
}

/* Desktop only: keep expanded content readable */
@media (min-width: 769px) {
  .registration-accordion .registration-accordion-details {
    max-width: none;
    margin-left: 0;
    margin-right: auto;
  }
}


/* Registration package accordions mobile responsive */

@media (max-width: 768px) {
    .registration-accordion {
        margin: 0 -2rem;
        width: calc(100% + 4rem);
    }
    
    .registration-item {
        margin-bottom: 3rem;
        border-radius: 0;
        border: none;
        border-top: 1px solid #A5C73E;
        box-shadow: none;
    }
    
    .registration-item.active {
        border-left: none;
        border-top: 1px solid #A5C73E;
    }
    
    .early-bird-banner {
        padding: 0.85rem 2rem;
        font-size: 0.95rem;
    }
    
    .registration-header {
        padding: 1.25rem 2rem;
        min-height: 48px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        border-bottom: none;
        position: relative;
    }
    
    .registration-title {
        font-size: 1.25rem;
        width: calc(100% - 50px);
        padding-right: 0;
        font-weight: 700;
    }
    
    .registration-pricing {
        width: 100%;
        justify-content: flex-start;
        gap: 3rem;
        margin-right: 0;
    }
    
    .price-group {
        text-align: left;
        align-items: flex-start;
    }
    
    .price-label {
        font-size: 0.7rem;
    }
    
    .price-amount {
        font-size: 1.35rem;
    }
    
    .accordion-chevron {
        position: absolute;
        top: 1.25rem;
        right: 2rem;
        width: 34px;
        height: 34px;
    }
    
    .accordion-chevron::before {
        font-size: 1.65rem;
    }
    
    .registration-item.active .registration-accordion-content {
        padding: 1rem 2rem 1.75rem 2rem;
        border-top: 1px solid #E5E7EB;
    }
    
    .registration-accordion-details > p {
        font-size: 1.05rem;
    }
    
    .registration-accordion-details li {
        font-size: 1.1rem;
        line-height: 1.6;
        padding: 0.65rem 0;
        padding-left: 2rem;
    }
    
    .registration-accordion-details li:before {
        font-size: 1.4rem;
    }
    
    .day-package {
        margin-bottom: 2rem;
        padding-bottom: 2rem;
    }
    
    .day-package-title {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.85rem;
        font-size: 1.12rem;
    }
    
    .day-package-pricing {
        gap: 2.75rem;
    }
    
    .day-package-pricing .price-group {
        text-align: left;
        align-items: flex-start;
    }
    
    .day-package-pricing .price-amount {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .registration-accordion {
        margin: 0 -1.5rem;
        width: calc(100% + 3rem);
    }
    
    .registration-item {
        margin-bottom: 2.5rem;
    }
    
    .early-bird-banner {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .registration-header {
        padding: 1.15rem 1.5rem;
    }
    
    .registration-title {
        font-size: 1.15rem;
        width: calc(100% - 48px);
    }
    
    .registration-pricing {
        gap: 2.5rem;
    }
    
    .price-amount {
        font-size: 1.25rem;
    }
    
    .accordion-chevron {
        top: 1.15rem;
        right: 1.5rem;
        width: 32px;
        height: 32px;
    }
    
    .accordion-chevron::before {
        font-size: 1.6rem;
    }
    
    .registration-item.active .registration-accordion-content {
        padding: 1rem 1.5rem 1.5rem 1.5rem;
    }
    
    .registration-accordion-details li {
        font-size: 1.05rem;
    }
    
    .day-package-pricing {
        gap: 2.25rem;
    }
}


/* Registration Badge above the registration title with animation */
.registration-title-badge {
    display: block;
    background: #C86A2F;
    color: white;
    padding: 0.3rem 0.85rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
    width: fit-content;
    white-space: nowrap;
    animation: subtlePulse 3s ease-in-out infinite;
}

@keyframes subtlePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(200, 106, 47, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 6px rgba(200, 106, 47, 0);
    }
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .registration-title-badge {
        font-size: 0.75rem;
        padding: 0.28rem 0.75rem;
        margin-bottom: 0.45rem;
    }
}




/* IMAGE TREATMENT */
/* Conference Image - Tall Variant */
.conf-img-tall {
  width: 100%;
  height: 320px; /* Taller than standard 220px */
  object-fit: cover;
  border-radius: 8px; /* Less rounded than standard 14px */
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.10);
  transition: all 0.3s ease;
}
.conf-img-tall:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
@media (max-width: 768px) {
  .conf-img-tall {
    height: 260px; /* Slightly shorter on mobile */
  }
}



/* Conference Image - Portrait Variant (for vertical images) */

.conf-img-portrait {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center top; /* Keeps head/subject in frame */
    border-radius: 20px 4px 20px 4px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.10);
    transition: all 0.3s ease;
}

.conf-img-portrait:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .conf-img-portrait {
        height: auto;
        border-radius: 16px 4px 16px 4px;
    }
}

@media (max-width: 480px) {
    .conf-img-portrait {
        height: auto;
    }
}





/* Photo Credit - Small italicized attribution */
.photo-credit {
  font-size: 0.75rem;
  font-style: italic;
  color: #718096;
  margin-top: 0.5rem;
  line-height: 1.4;
}
/* Optional: Right-aligned version */
.photo-credit.right {
  text-align: right;
}
/* Optional: Centered version */
.photo-credit.center {
  text-align: center;
}



/* Hotel/Travel  page styles */
.venue-hero {
  height: clamp(340px, 28vw, 520px);
  background-image: url('https://www.ncra.org/images/default-source/uploadedimages/events/convention/2026-conference-graphics/bellevue-arts-museum.jpg?sfvrsn=ef17087f_5');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center 65%;
  border: 1px solid #D27A3B;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .12);
  margin-top: 3rem;
  margin-bottom: 1rem;
  overflow: hidden;
}
@media (max-width: 768px) {
  .venue-hero {
    height: 280px;
    background-position: center 30%;
    border-radius: 8px;
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
}



/* QUESTIONS CONTACT ROW - MAIN PAGE- centered bar with dividers */
.questions-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 0;
  margin: 1.5rem 0;
  border-top: 1px solid rgba(30, 58, 95, 0.18);
  border-bottom: 1px solid rgba(30, 58, 95, 0.18);
}
.questions-row h4 {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 700;
  color: #1e3a5f;
}
/* Right side contact group */
.questions-contact {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
/* Vertical divider */
.questions-divider {
  width: 1px;
  height: 24px;
  background: rgba(30, 58, 95, 0.3);
  flex-shrink: 0;
}
/* Contact links */
.questions-contact a {
  color: #2F5AA8;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s ease;
}
.questions-contact a:hover {
  color: #D27A3B;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
/* Phone link - no underline on hover */
.questions-contact a.phone-link:hover {
  text-decoration: none;
}
/* Mobile responsive */
@media (max-width: 768px) {
  .questions-row {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
    padding: 1rem 0;
  }
  .questions-row h4 {
    font-size: 1rem;
  }
  .questions-contact {
    flex-direction: column;
    gap: 0.5rem;
  }
  .questions-divider {
    display: none;
  }
}


/* ==========================================================================
   CONFERENCE SECTION BAND - Navy divider for section headers
   ========================================================================== */

.conf-section-band {
    background: #1e3a5f;
    padding: 0.6rem 1.5rem;
    margin: 3.5rem 0 1.75rem 0;
    border-radius: 8px;
    text-align: left;
}

.conf-section-band h2,
.conf-section-band h3 {
    font-size: 1.2rem !important;
    font-weight: 700;
    color: white;
    font-family: 'Proxima Nova', Arial, sans-serif !important;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: left;
}

.conf-section-band h2 {
    font-size: 1.3rem !important;
}

/* First band in a container needs less top margin */
.conf-section-band:first-child {
    margin-top: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .conf-section-band {
        margin-left: -2rem;
        margin-right: -2rem;
        margin-top: 3rem;
        border-radius: 0;
    }

    .conf-section-band:first-child {
        margin-top: 0;
    }

    .conf-section-band h2 {
        font-size: 1.15rem !important;
    }

    .conf-section-band h3 {
        font-size: 1.1rem !important;
    }
}

@media (max-width: 480px) {
    .conf-section-band {
        margin-left: -1.5rem;
        margin-right: -1.5rem;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .conf-section-band h2 {
        font-size: 1.1rem !important;
    }

    .conf-section-band h3 {
        font-size: 1.05rem !important;
    }
}


/* Note that appears below section bands */
.conf-band-note,
p.conf-band-note {
    text-align: center !important;
    margin: 1rem auto 2.1rem auto !important; /* ← Add auto margins */
    font-size: 1.2rem !important;
    font-style: normal !important;
    color: #404040;
    line-height: 1.5;
    display: block !important; /* ← Force block display */
    width: 100% !important; /* ← Force full width */
}



/* Reusable checkmark list - green check on h4 */
.check-item {
    margin-bottom: 1.25rem;
}
.check-item h3 {
    font-size: 1.7rem;
    color: #1e3a5f;
    font-weight: 700;
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 0.4rem;
}
.check-item h3::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: -0.1rem;
    font-size: 1.8rem;
    color: #A5C73E;
    font-weight: bold;
}
.check-item h4 {
    font-size: 1.5rem;
    color: #1e3a5f;
    font-weight: 700;
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 0.4rem;
}
.check-item h4::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: -0.1rem;
    font-size: 1.6rem;
    color: #A5C73E;
    font-weight: bold;
}
.check-item h5 {
    font-size: 1.25rem;
    color: #1e3a5f;
    font-weight: 700;
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 0.4rem;
}
.check-item h5::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: -0.1rem;
    font-size: 1.35rem;
    color: #A5C73E;
    font-weight: bold;
}
.check-item p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.6;
    padding-left: 2.5rem;
    margin: 0;
}
@media (max-width: 768px) {
    .check-item h3 { font-size: 1.4rem; }
    .check-item h4 { font-size: 1.25rem; }
    .check-item h5 { font-size: 1.1rem; }
}



/* Reusable narrow content wrapper */
.content-narrow {
    max-width: 600px;
    width: 100%;
    margin-top: 4.2rem !important;
   padding-left: 2.8rem !important;
}

@media (max-width: 768px) {
    .content-narrow {
        max-width: 100%;
        margin-top: 1.5rem;
    padding-left: 0;
    }
}



/* Reusable Conference Video - Base Style */

.conf-video {
    max-width: 700px;
    margin: 0 auto 3rem auto;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 16 / 9;
}

.conf-video iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.conf-box .conf-video:last-child {
    margin-bottom: 0;
}

/* Wider variant */
.conf-video.wide {
    max-width: 100%;
}

/* Narrow variant */
.conf-video.narrow {
    max-width: 450px;
}

@media (max-width: 968px) {
    .conf-video {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .conf-video iframe {
        height: 225px;
    }
}



/* Reusable content box */
.conf-box {
    padding: 3rem;
    border-radius: 16px;
}

.conf-box.white {
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.conf-box.grey {
    background: #f8f9fa;
}

.conf-box p {
    font-size: 1.15rem;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.conf-box p:last-child {
    margin-bottom: 0;
}

.conf-box h3 {
    font-size: 1.5rem;
    color: #1e3a5f;
    font-weight: 700;
    margin-bottom: 1rem;
}

.conf-box h4 {
    font-size: 1.3rem;
    color: #1e3a5f;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

@media (max-width: 968px) {
    .conf-box {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .conf-box {
        padding: 1.5rem 1rem;
    }

    .conf-box p {
        font-size: 1.05rem;
    }

    .conf-box h3 {
        font-size: 1.3rem;
    }

    .conf-box h4 {
        font-size: 1.1rem;
    }
}



/* FAQS PAGE S TYLING AND DEFAULT ACCORDION OVERIDE */

.faq-group {
  font-size: 2rem;
  color: #1e3a5f;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0.01em;
  padding: 0.75rem 1rem;
  margin-bottom: 2rem;
  border-left: 4px solid #A5C73E;

  background: linear-gradient(135deg, #fcfcfd 0%, #ffffff 100%);
  border-radius: 10px;
  box-shadow: none;
}


/* Overide accordian faq size */

.accordion .accordion__label {
  font-size: 1.5rem !important;
}




/* ==========================================================================
   END OF STYLESHEET
   ========================================================================== */