  body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: #f5f5f5;
  }

  /* =========================================================
    TOP BAR
  ========================================================= */
  .top-bar {
    background: #001938;
    color: #FFD700;
    font-size: 14px;
    border-bottom: 1px solid #FFD700;
  }
  .top-bar a { color: #fff; text-decoration: none; }
  .top-bar a:hover { opacity: 0.85; }

  .top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  @media (max-width: 767px) {
    .top-bar-content {
      flex-direction: column;
      align-items: flex-start;
      text-align: left;
      padding-left: 8px;
    }
    .topbar-left { width: 100%; font-size: 14px; }
    .topbar-right {
      width: 100%;
      display: flex;
      justify-content: center;
      font-size: 20px;
      padding-top: 4px;
    }
  }

  /* =========================================================
    CTA BUTTONS (Unified styling)
  ========================================================= */
  .btn-einbl-primary,
  .btn-einbl-white-outline,
  .btn-einbl-tertiary {
    border-radius: 50px;
    padding: 6px 12px;
    font-size: 16px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: .25s ease-in-out;
  }
  .btn-einbl-primary i,
  .btn-einbl-white-outline i,
  .btn-einbl-tertiary i { font-size: 16px; }

  /* Solid Gold */
  .btn-einbl-primary {
    background: #FFD700;
    color: #001938;
    border: 1px solid #fff;
  }
  .btn-einbl-primary:hover { background: #e6c200; }

  /* White Outline */
  .btn-einbl-white-outline {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
  }
  .btn-einbl-white-outline:hover {
    background: #fff;
    color: #001938;
  }

  /* Navy Fill, Gold Outline */
  .btn-einbl-tertiary {
    background: #001938;
    color: #FFD700;
    border: 1px solid #FFD700;
  }
  .btn-einbl-tertiary:hover {
    background: #FFD700;
    color: #001938;
  }

  /* =========================================================
    MID HEADER (Desktop)
  ========================================================= */
  .mid-header {
    background: #001938;
  }
  .mid-header .navbar-brand img {
    height: 51px;
  }

  /* =========================================================
    DESKTOP NAVIGATION
  ========================================================= */
  .einbl-desktop-nav {
    background: #001938;
    border-top: 0.25px solid #FFD700;
    border-bottom: 1px solid #FFD700;
    padding: 0;
  }

  /* Base link styling */
  .einbl-desktop-nav .nav-link {
    color: #fff !important;
    padding: 0.85rem 1.3rem !important;
    font-weight: 500;
    display: inline-block;
    position: relative;
  }
  .einbl-desktop-nav .nav-link:hover {
    color: #FFD700 !important;
  }

  /* Gold underline hover */
  .einbl-desktop-nav .nav-link::after {
    content: "";
    position: absolute;
    bottom: 3px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #FFD700;
    transition: width .3s ease, left .3s ease;
  }
  .einbl-desktop-nav .nav-link:hover::after {
    width: 60%;
    left: 20%;
  }

  /* Remove bootstrap caret */
  .einbl-desktop-nav .dropdown-toggle::after {
    display: none !important;
  }

  /* Custom gold caret */
  .einbl-desktop-nav .dropdown-toggle {
    padding-right: 1.8rem !important;
  }
  .einbl-desktop-nav .dropdown-toggle::before {
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 12px;
    color: #FFD700;
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform .25s ease, color .25s ease;
  }

  @media (min-width: 992px) {
    .einbl-desktop-nav .dropdown:hover > .dropdown-toggle::before {
      transform: translateY(-50%) rotate(180deg);
    }
  }

  /* Dropdown menu */
  .einbl-desktop-nav .dropdown-menu {
    background: #001938 !important;
    border: none;
    border-radius: 8px;
    padding: 10px 0;
    display: none;
  }
  @media (min-width: 992px) {
    .einbl-desktop-nav .dropdown:hover > .dropdown-menu {
      display: block !important;
    }
  }

  /* Dropdown items */
  .einbl-desktop-nav .dropdown-item {
    color: #fff !important;
    padding: 10px 18px !important;
  }
  .einbl-desktop-nav .dropdown-item:hover {
    background: #FFD700 !important;
    color: #001938 !important;
  }

  /* Submenu (industry) */
  @media (min-width: 992px) {
    .dropdown-submenu {
      position: relative;
    }
    .dropdown-submenu > .dropdown-menu {
      top: 0;
      left: 100%;
      margin-left: 5px;
      background: #001938;
      border-radius: 8px;
    }
    .dropdown-submenu:hover > .dropdown-menu {
      display: block !important;
    }
  }

  /* Caret turns navy when item hover gold */
  .einbl-desktop-nav .dropdown-item.dropdown-toggle:hover::before,
  .einbl-desktop-nav .dropdown-submenu:hover > .dropdown-toggle::before {
    color: #001938;
  }

  /* =========================================================
    MOBILE ONLY ELEMENTS
  ========================================================= */

  /* Hide CTA icon row + mobile CTA row on desktop */
  @media (min-width: 992px) {
    .mobile-cta-icon-row,
    .mobile-cta-row {
      display: none !important;
    }
  }

  /* Mobile CTA icon row */
  .mobile-cta-icon-row {
    background:#001938;
    border-bottom:1px solid #FFD700;
    padding: .25rem 0 1rem;
  }
  .btn-einbl-icon {
    background:#FFD700;
    width:45px;
    height:45px;
    color:#001938;
    font-size:21px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    position:relative;
    text-decoration:none;
    transition:.3s;
  }
  .btn-einbl-icon:hover {
    transform: scale(1.08);
    box-shadow: 0 4px 14px rgba(255,215,0,0.45);
  }
  .btn-einbl-icon .cta-label {
    position:absolute;
    bottom:-16px;
    font-size:12px;
    font-weight:600;
    color:#FFD700;
  }

  /* Mobile logo bar */
  .mobile-logo-row {
    background:#001938;
    padding:12px 16px;
    border-bottom:1px solid #FFD700;
  }
  .hamburger-white i {
    font-size:26px;
    color:#FFD700;
  }
  .mobile-logo {
    max-height:45px;
  }

  /* Mobile navigation */
  #einblMobileMenu {
    background:#001938;
  }
  #einblMobileMenu a {
    color:#fff !important;
    padding: 6px 20px;
    font-weight:600;
    display:block;
    text-decoration:none;
    border-bottom:1px solid rgba(255,255,255,0.07);
    transition: .25s;
  }
  #einblMobileMenu a:hover {
    background:#FFD700 !important;
    color:#001938 !important;
  }

  /* Nested submenu */
  .mobile-dropdown .mobile-submenu,
  .mobile-dropdown-sub .mobile-submenu-inner {
    display:none;
  }
  .mobile-dropdown.open .mobile-submenu {
    display:block;
  }
  .mobile-dropdown-sub.open .mobile-submenu-inner {
    display:block;
  }

  .mobile-submenu a,
  .mobile-submenu-inner a {
    padding-left:32px !important;
    font-weight:500;
  }

  /* Mobile caret icons */
  .caret-icon i {
    font-size:13px;
    color:#FFD700;
    transition:transform .25s;
  }
  .mobile-dropdown.open > a .caret-icon i {
    transform:rotate(180deg);
  }
  .mobile-dropdown-sub.open > a .caret-icon i {
    transform:rotate(90deg);
  }

    /* 🔚 Footer Styling */
    footer {
      background-color: #001938;
      padding-bottom: 2rem;
    }

    footer a {
      color: #ffffff;
      text-decoration: none !important;
      transition: color 0.2s ease-in-out;
    }

    footer a:hover {
      color: #FFD700;
      text-decoration: underline;
    }

    footer h6,
    .highlight-gold,
    .contact-info-gold i {
      color: #FFD700;
    }

    .footer-badge {
      padding: 3px 9px;
      font-weight: bold;
      border-radius: 50px;
      background-color: #ffffff;
      color: #001938;
      text-decoration: none !important;
    }

    .footer-badge:hover {
      background-color: #FFD700;
      color: #001938;
    }

    .footer-links ul {
      padding-left: 1rem;
      list-style: none;
    }

    .footer-links ul li {
      padding-bottom: 10px;
    }

    .footer-links ul li::before {
      content: '\f105';
      font-family: 'Font Awesome 5 Free';
      font-weight: 900;
      padding-right: 8px;
      color: #FFD700;
    }

    .social-icons {
      flex-wrap: wrap;
      gap: 0.75rem;
    }

    .social-icons a {
      font-size: 2.1rem;
      color: #001938;
      background: #ffffff;
      border-radius: 8px;
      width: 52px;
      height: 52px;
      display: flex;
      justify-content: center;
      align-items: center;
      transition: all 0.3s ease-in-out;
      flex: 0 0 auto;
      margin-bottom: 0.5rem;
    }

    .social-icons a:hover {
      background-color: #FFD700;
      color: #001938;
    }

    .btn-business {
      background-color: #28a745;
      color: #ffffff;
      font-weight: bold;
      padding: 12px 26px;
      border-radius: 30px;
      font-size: 1.1rem;
      transition: all 0.3s ease-in-out;
      border: none;
    }

    .btn-contact {
      background-color: #ffffff;
      color: #001938;
      font-weight: bold;
      padding: 12px 26px;
      border-radius: 30px;
      font-size: 1.1rem;
      transition: all 0.3s ease-in-out;
      border: 2px solid #FFD700;
    }

    .btn-business:hover {
      background-color: #e6c200;
    }

    .btn-contact:hover {
      background-color: #FFD700;
      color: #001938;
    }

    .newsletter-input {
      padding: 0.5rem 1rem;
    }
    


  /* =========================
 INNER PAGE BASE
========================= */
/* =====================================
   EINBL BREADCRUMB
===================================== */

.einbl-crumbbar{
  width:100%;
  background:#f8fafc;
  border-bottom:1px solid #e5e7eb;
}

/* Matches EIN content width */
.einbl-breadcrumb-wrap{
  max-width:1320px;
  margin:0 auto;
  padding:0 22px;
}

/* Breadcrumb row */
.einbl-breadcrumb{
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 0;
  font-size:13px;
  line-height:1;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

/* Links */
.einbl-breadcrumb a{
  color:#001938;
  text-decoration:none;
  font-weight:700;
}

.einbl-breadcrumb a:hover{
  text-decoration:underline;
}

/* Separator */
.einbl-bc-sep{
  color:#64748b;
  opacity:.6;
  font-weight:700;
}

/* Current page */
.einbl-bc-current{
  color:#001938;
  font-weight:900;
}

/* Mobile safe */
@media (max-width:768px){
  .einbl-breadcrumb{
    font-size:12px;
    overflow-x:auto;
    scrollbar-width:none;
  }
  .einbl-breadcrumb::-webkit-scrollbar{
    display:none;
  }
}


/* =========================
 FAQ BLOCK
========================= */
.einbl-body-faq{
  margin-top:48px;
  background:#f8fafc;
  border-radius:18px;
  padding:21px;
}

.einbl-body-faq-header{
  text-align:center;
  margin-bottom:28px;
}

.einbl-body-faq-header h2{
  font-size:28px;
  font-weight:950;
  color:#001938;
}

.einbl-body-faq-header p{
  font-size:14px;
  color:#475569;
}

.einbl-faq-item{
  margin-top:14px;
  background:#ffffff;
  border:1px solid #e5e7eb;
  border-radius:12px;
  padding:0 20px;
}

.einbl-faq-item summary{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:18px 0;
  cursor:pointer;
  font-size:15px;
  font-weight:900;
}

.einbl-faq-item summary::-webkit-details-marker{
  display:none;
}

.einbl-faq-item summary i{
  width:26px;
  height:26px;
  border-radius:50%;
  background:#001938;
  color:#ffffff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-style:normal;
  font-weight:900;
}

.einbl-faq-item summary i::before{
  content:"+";
}

.einbl-faq-item[open] summary i::before{
  content:"−";
}

.einbl-faq-answer{
  padding-bottom:18px;
  font-size:14px;
  line-height:1.7;
  color:#334155;
}

/* =========================
 RESPONSIVE
========================= */
@media (max-width:900px){
  .einbl-body-block.split,
  .einbl-body-block.split.reverse{
    grid-template-columns:1fr;
  }

  .einbl-inner-hero h1{
    font-size:30px;
  }
}


  /** scroll to top, bottomr button starts **/
  .scrollbtn-ein {
    background-color: #FFD700;
    color: #001938;
    font-weight: 600;
    padding: 9px 12px;
    margin-bottom: 30px;
    border-radius: 6px;
    font-size: 1rem;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
    text-decoration: none;
  }

  /* Hidden: up above */
  #scrollToTopBtn {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
  }

  /* Show: slides downward */
  #scrollToTopBtn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  /* Base hidden state */
  #scrollToBottomBtn {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
  }

  /* Show state */
  #scrollToBottomBtn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  /* Position wrapper */
  #scrollToBottomWrap {
    position: fixed;
    left: 1rem;
    top: 84px; /* adjust to match desktop navbar height */
    z-index: 2000;
  }

  /* On smaller screens: push further down below mobile menu */
  @media (max-width: 991.98px) {
    #scrollToBottomWrap {
      top: 120px; /* adjust for mobile menu height */
    }
  }
  /** scroll to top, bottomr button starts **/
  

  /** inner page latest **/

  
.einbl-innerpage{
  padding:40px 0 0px;
  background:#ffffff;
}

.einbl-page-container{
  max-width:1320px;
  margin:0 auto;
  padding:0 22px;
}

/* HERO */
.einbl-inner-hero{
  margin-bottom:36px;
}

.einbl-inner-hero h1{
  font-size:40px;
  font-weight:950;
  color:#001938;
  letter-spacing:-0.3px;
}

.einbl-subtitle{
  font-size:15px;
  color:#64748b;
}

/* =========================
 BODY BLOCKS
========================= */
.einbl-body-block{
  padding:36px 0;
  border-top:1px solid #eef2f7;
}

.einbl-body-block:first-of-type{
  border-top:none;
}

/* SPLIT BLOCK */
.einbl-body-block.split{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:36px;
  align-items:center;
}

.einbl-body-block.split.reverse{
  grid-template-columns:.9fr 1.1fr;
}

/* TEXT */
.einbl-body-text h2{
  font-size:22px;
  font-weight:900;
  color:#0f172a;
  margin-bottom:10px;
}

.einbl-body-text p{
  font-size:14px;
  line-height:1.75;
  color:#334155;
  margin-bottom:12px;
}

/* IMAGE */
.einbl-body-image img{
  width:100%;
  border-radius:14px;
  object-fit:cover;
  box-shadow:0 14px 30px rgba(0,0,0,.08);
}

/* LIST */
.einbl-body-list{
  padding-left:18px;
}

.einbl-body-list li{
  font-size:14px;
  margin:8px 0;
  color:#334155;
}

/* =========================
 CTA BLOCK
========================= */
.einbl-body-cta{
  margin-top:40px;
  background:#001938;
  color:#ffffff;
  border-radius:18px;
  padding:40px;
}

/* 🔹 Make CTA a 2-column flex layout on desktop */
.einbl-body-cta-inner{
  max-width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:32px;
}

.einbl-body-cta h3{
  font-size:22px;
  font-weight:900;
  margin:0 0 8px;
}

.einbl-body-cta p{
  font-size:14px;
  line-height:1.7;
  color:#e2e8f0;
  max-width:600px;
  margin:0;
}

/* 🔹 Buttons aligned right on desktop */
.einbl-body-cta-actions{
  display:flex;
  gap:14px;
  align-items:center;
  justify-content:flex-end;
  white-space:nowrap;
}

/* Buttons (unchanged styling) */
.einbl-btn-primary{
  padding:12px 22px;
  background:#FFD700;
  color:#001938;
  font-weight:900;
  font-size:14px;
  border-radius:999px;
  text-decoration:none;
}

.einbl-btn-outline{
  padding:12px 22px;
  border:2px solid #FFD700;
  color:#FFD700;
  font-weight:900;
  font-size:14px;
  border-radius:999px;
  text-decoration:none;
}

/* =========================
 MOBILE BEHAVIOR
========================= */
@media (max-width:900px){
  .einbl-body-cta-inner{
    flex-direction:column;
    align-items:flex-start;
  }

  .einbl-body-cta-actions{
    margin-top:16px;
    justify-content:flex-start;
    white-space:normal;
  }
}

  
.einbl-about{
  background:#ffffff;
  padding:42px 0 64px;
}

.einbl-about-container{
  max-width:1320px;
  margin:0 auto;
  padding:0 22px;
}

/* HERO */
.einbl-about-hero{
  padding:10px 0 28px;
  border-bottom:1px solid #eef2f7;
  margin-bottom:34px;
}

.einbl-about-kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-size:12px;
  color:#001938;
  background:rgba(255,215,0,.18);
  border:1px solid rgba(255,215,0,.45);
  padding:7px 12px;
  border-radius:999px;
}

.einbl-about-hero h1{
  margin:14px 0 6px;
  font-size:42px;
  line-height:1.1;
  letter-spacing:-0.4px;
  color:#001938;
  font-weight:950;
}

.einbl-about-subtitle{
  margin:0 0 18px;
  color:#64748b;
  font-size:15px;
  line-height:1.6;
  max-width:820px;
}

.einbl-about-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

/* BUTTONS */
.einbl-about-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 20px;
  border-radius:999px;
  text-decoration:none;
  font-weight:900;
  font-size:14px;
  transition:.25s ease-in-out;
  border:2px solid transparent;
}

.einbl-about-btn-primary{
  background:#FFD700;
  color:#001938;
  border-color:#FFD700;
}

.einbl-about-btn-primary:hover{
  transform:translateY(-1px);
  box-shadow:0 10px 22px rgba(0,0,0,.10);
}

.einbl-about-btn-outline{
  background:transparent;
  color:#001938;
  border-color:#001938;
}

.einbl-about-btn-outline:hover{
  background:#001938;
  color:#ffffff;
}

/* BLOCKS */
.einbl-about-block{
  padding:34px 0;
  border-bottom:1px solid #eef2f7;
}

.einbl-about-block:last-of-type{
  border-bottom:none;
}

/* SPLIT */
.einbl-about-split{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:36px;
  align-items:center;
}

.einbl-about-split.reverse{
  grid-template-columns:.95fr 1.05fr;
}

.einbl-about-text h2{
  margin:0 0 10px;
  font-size:24px;
  font-weight:950;
  color:#0f172a;
  letter-spacing:-0.2px;
}

.einbl-about-text p{
  margin:0 0 12px;
  color:#334155;
  font-size:14px;
  line-height:1.8;
}

/* BULLETS */
.einbl-about-bullets{
  margin-top:18px;
  display:grid;
  gap:12px;
}

.einbl-about-bullet{
  display:flex;
  gap:12px;
  align-items:flex-start;
  padding:14px 14px;
  border:1px solid #e5e7eb;
  border-radius:14px;
  background:#ffffff;
  box-shadow:0 10px 22px rgba(0,0,0,.04);
}

.einbl-about-bullet-icon{
  width:28px;
  height:28px;
  border-radius:10px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:950;
  color:#001938;
  background:rgba(255,215,0,.38);
  border:1px solid rgba(255,215,0,.65);
  flex:0 0 auto;
  margin-top:1px;
}

.einbl-about-bullet-title{
  font-weight:950;
  color:#0f172a;
  font-size:14px;
  margin-bottom:2px;
}

.einbl-about-bullet-text{
  color:#475569;
  font-size:13px;
  line-height:1.6;
}

/* MEDIA CARD */
.einbl-about-image-card{
  border-radius:18px;
  overflow:hidden;
  background:#0b1220;
  box-shadow:0 18px 40px rgba(0,0,0,.10);
  border:1px solid rgba(2,6,23,.08);
}

.einbl-about-image-card img{
  width:100%;
  height:320px;
  object-fit:cover;
  display:block;
  filter:saturate(1.05) contrast(1.03);
}

.einbl-about-image-caption{
  padding:16px 16px 18px;
  background:linear-gradient(180deg, rgba(0,25,56,.92), rgba(0,25,56,1));
  color:#ffffff;
  border-top:1px solid rgba(255,215,0,.25);
}

.einbl-about-image-title{
  font-weight:950;
  font-size:14px;
  letter-spacing:.02em;
}

.einbl-about-image-sub{
  margin-top:4px;
  font-size:12.5px;
  color:#e2e8f0;
}

/* VALUE CARDS */
.einbl-about-cards{
  margin-top:18px;
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:14px;
}

.einbl-about-card{
  background:#ffffff;
  border:1px solid #e5e7eb;
  border-radius:16px;
  padding:16px 16px 18px;
  box-shadow:0 12px 24px rgba(0,0,0,.05);
}

.einbl-about-card-top{
  display:flex;
  justify-content:flex-start;
  margin-bottom:10px;
}

.einbl-about-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:6px 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:950;
  color:#001938;
  background:rgba(255,215,0,.22);
  border:1px solid rgba(255,215,0,.55);
}

.einbl-about-card h3{
  margin:0 0 6px;
  font-size:15px;
  font-weight:950;
  color:#0f172a;
}

.einbl-about-card p{
  margin:0;
  color:#475569;
  font-size:13px;
  line-height:1.65;
}

/* SECTION HEAD */
.einbl-about-section-head{
  max-width:980px;
}

.einbl-about-section-head h2{
  margin:0 0 10px;
  font-size:24px;
  font-weight:950;
  color:#0f172a;
}

.einbl-about-section-head p{
  margin:0 0 16px;
  color:#475569;
  font-size:14px;
  line-height:1.8;
}

/* HELP GRID */
.einbl-about-helpgrid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:14px;
}

.einbl-about-helpitem{
  display:flex;
  gap:12px;
  align-items:flex-start;
  padding:16px 16px;
  border:1px solid #e5e7eb;
  border-radius:16px;
  background:#ffffff;
  box-shadow:0 12px 24px rgba(0,0,0,.05);
}

.einbl-about-helpicon{
  width:34px;
  height:34px;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:950;
  color:#001938;
  background:#FFD700;
  flex:0 0 auto;
}

.einbl-about-helpitem h3{
  margin:0 0 4px;
  font-size:14px;
  font-weight:950;
  color:#0f172a;
}

.einbl-about-helpitem p{
  margin:0;
  color:#475569;
  font-size:13px;
  line-height:1.6;
}

/* CTA */
.einbl-about-cta{
  margin-top:34px;
  border-radius:18px;
  background:#001938;
  color:#ffffff;
  padding:34px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:22px;
  border:1px solid rgba(255,215,0,.32);
  box-shadow:0 18px 40px rgba(0,0,0,.10);
}

.einbl-about-cta h3{
  margin:0 0 8px;
  font-size:20px;
  font-weight:950;
}

.einbl-about-cta p{
  margin:0;
  color:#e2e8f0;
  font-size:14px;
  line-height:1.7;
  max-width:720px;
}

.einbl-about-cta-right{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

/* CTA buttons in dark area */
.einbl-about-cta .einbl-about-btn-outline{
  border-color:#FFD700;
  color:#FFD700;
}

.einbl-about-cta .einbl-about-btn-outline:hover{
  background:#FFD700;
  color:#001938;
}

/* RESPONSIVE */
@media (max-width: 992px){
  .einbl-about-hero h1{ font-size:34px; }

  .einbl-about-split,
  .einbl-about-split.reverse{
    grid-template-columns:1fr;
  }

  .einbl-about-cards{
    grid-template-columns:1fr;
  }

  .einbl-about-helpgrid{
    grid-template-columns:1fr;
  }

  .einbl-about-image-card img{
    height:260px;
  }

  .einbl-about-cta{
    flex-direction:column;
    align-items:flex-start;
  }

  .einbl-about-cta-right{
    justify-content:flex-start;
  }
}


        /* Broker CTA – advisory style (lighter than primary CTAs) */
.btn-einbl-broker {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  background: rgba(255, 215, 0, 0.06);   /* faint gold tint */
  border: 1px solid rgba(255, 215, 0, 0.45);
  border-radius: 999px;

  color: #FFD700;
  font-size: 14.5px;
  font-weight: 600;

  padding: 7px 14px;
  line-height: 1;

  text-decoration: none !important;
  cursor: pointer;

  transition: 
    background 0.25s ease,
    color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.2s ease;
}

/* Hover state */
.btn-einbl-broker:hover {
  background: rgba(255, 215, 0, 0.18);
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(255, 215, 0, 0.25);
  transform: translateY(-1px);
  text-decoration: none !important;
}

/* Focus / keyboard accessibility */
.btn-einbl-broker:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.35);
}
.btn-einbl-broker {
  transition: all 0.25s ease;
}


.mobile-cta-icon-row a,
.mobile-cta-icon-row a:hover,
.mobile-cta-icon-row a:active,
.mobile-cta-icon-row a:focus {
  text-decoration: none !important;
}
