/* =========================================================
   FAQ Accordion — styles
   Colours exposed as CSS variables for quick theming.
   ========================================================= */
.cfa {
	--cfa-bg: #ffffff;
	--cfa-border: #e6e8ec;
	--cfa-text: #1a1d24;
	--cfa-muted: #2b2b2b;
	--cfa-accent: #515151;
	--cfa-hover: #f6f8fb;
	--cfa-radius: 14px;
	--cfa-shadow: 0 1px 2px rgba(16, 24, 40, .04), 0 4px 16px rgba(16, 24, 40, .06);
	font-family: inherit;
	max-width: 100%;
	color: var(--cfa-text);
}
section.cfa {
    padding-top: 30px;
}
.cfa * { box-sizing: border-box; }

.cfa__title {
	font-size: clamp(1.5rem, 4vw, 2rem);
	font-weight: 700;
	letter-spacing: -.02em;
	margin: 0 0 20px;
}

.cfa__list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.cfa__item {
	background: var(--cfa-bg);
	border: 1px solid var(--cfa-border);
	border-radius: var(--cfa-radius);
	box-shadow: var(--cfa-shadow);
	overflow: hidden;
	transition: border-color .2s ease;
}

.cfa__item.is-open { border-color: var(--cfa-accent); }

.cfa__heading { margin: 0; }

.cfa__trigger {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 20px 22px;
	background: transparent;
	border: 0;
	cursor: pointer;
	text-align: left;
	font-family: inherit;
	font-size: 1.05rem;
	font-weight: 600;
	color: var(--cfa-text);
	transition: background .18s ease;
}

.cfa__trigger:hover { background: var(--cfa-hover); }

.cfa__trigger:focus-visible {
	outline: 2px solid var(--cfa-accent);
	outline-offset: -2px;
}

.cfa__question {
	display: flex;
	flex-direction: column;
	gap: 3px;
}

.cfa__eyebrow {
	font-size: .72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .06em;
	color: var(--cfa-accent);
}

/* Plus/minus icon */
.cfa__icon {
	flex: 0 0 auto;
	width: 16px;
	height: 16px;
	position: relative;
	transition: transform .3s ease;
}

.cfa__icon::before,
.cfa__icon::after {
	content: "";
	position: absolute;
	background: var(--cfa-accent);
	border-radius: 2px;
	transition: opacity .3s ease;
}

.cfa__icon::before { top: 50%; left: 0; width: 100%; height: 2px; transform: translateY(-50%); }
.cfa__icon::after  { left: 50%; top: 0; width: 2px; height: 100%; transform: translateX(-50%); }

.cfa__item.is-open .cfa__icon { transform: rotate(180deg); }
.cfa__item.is-open .cfa__icon::after { opacity: 0; }

/* Animated panel */
.cfa__panel {
	overflow: hidden;
	height: 0;
	transition: height .3s ease;
}

.cfa__answer {
	padding: 0 22px 22px;
	color: var(--cfa-muted);
	font-size: 1rem;
	line-height: 1.65;
}

.cfa__answer p:first-child { margin-top: 0; }
.cfa__answer p:last-child { margin-bottom: 0; }

button:focus {
    outline:none;
}

.single-insights .elementor-widget-container h2 {
    font-size: 28px !important;
    margin: 15px 0px !important;
}

.single-insights .elementor-widget-container h3,
.single-insights h4,
.single-insights h5 {
    font-size: 21px !important;
    margin: 10px 0px;
}

.single-insights .cfa__heading {
    margin: 0px !important;
}

.single-insights .elementor-widget-container img {
    width: 100%;
    object-fit: contain;
}

.single-insights .cfa {
    margin-bottom: 50px;
}

.egs-content-wrap {
    padding: 20px 20px 10px;
    background: #ffe6e6;
    border: 1px solid #d5a2a2;
	margin-bottom: 20px;
}
.insights-toc-list {
	margin-left:0px ;
}
.insights-toc-list li {
    list-style: none !important;
	margin-bottom:10px;
}
.elementor-element.elementor-element-20155f4.e-con-full.e-flex.e-con.e-child {
    position: sticky;
    top: 60px !important;
    align-self: flex-start;
}
.insights-toc-list li a{
	 color: var(--e-global-color-d302840);
    fill: var(--e-global-color-d302840);
    padding-left: 0px;
    padding-right: 0px;
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: 16px;
}
.insights-toc-list li a:hover {
    color: var(--e-global-color-accent);
    fill: var(--e-global-color-accent);
}
/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
	.cfa__panel,
	.cfa__icon,
	.cfa__icon::before,
	.cfa__icon::after,
	.cfa__trigger { transition: none; }
}

/* Automatic dark mode — remove this block if your theme handles it */
@media (prefers-color-scheme: dark) {
	.cfa {
		--cfa-bg: #161a21;
		--cfa-border: #2a303a;
		--cfa-text: #f2f4f8;
		--cfa-muted: #a3adbd;
		--cfa-hover: #1c222b;
		--cfa-shadow: 0 1px 2px rgba(0, 0, 0, .3), 0 4px 16px rgba(0, 0, 0, .35);
	}
}

.insights-toc-list a {
	color: #333;
	text-decoration: none;
	transition: color .25s ease, border-color .25s ease;
}

/* Active link while scrolling (and hover) — !important to override Elementor */
.insights-toc-list a:hover,
.insights-toc-list a.is-active {
	color: var(--toc-accent, #cc2b2b) !important;
	font-weight: 600;
}

/* Optional: left indicator bar on the active item */
.insights-toc-list > li {
	border-left: 2px solid transparent;
	transition: border-color .25s ease;
}
.insights-toc-list > li:has(a.is-active) {
	border-left-color: var(--toc-accent, #cc2b2b);
	
	padding-left: 10px;
}
.fixed-cta-wrap {
    display: none;
    
}
.custom-fixed-cta {
    background-color: var(--e-global-color-accent);
    font-weight: 500;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: var(--e-global-color-accent);
    border-radius: 6px;
    padding: 12px 15px 12px 15px;
    color: #ffffff;
    width: 100%;
    text-align: center;
    display: inline-block;
}
@media (max-width:767px){
	.fixed-cta-wrap {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        transform: rotate(0deg);
		margin-bottom: 0px;
		z-index: 999;
    }
	.custom-fixed-cta {
		border-radius: 0px;
	}
	footer {
		margin-bottom: 20px;
	}
}

.single-insights .insights .e-con-inner {
    margin: 0;
    padding: 0 !important;
}