@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

.da-container-4092bb1c {
	font-family: 'Montserrat', var(--e-global-typography-primary-font-family), sans-serif;
	color: var(--e-global-color-text);
}

.da-container-4092bb1c * {
	box-sizing: border-box;
}

.da-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 24px;
}

.da-main-title {
	margin: 0;
	font-size: 24px;
	font-weight: 700;
	color: #0f172a;
}

.da-toggle-all {
	background: #f1f5f9;
	border: none;
	padding: 8px 16px;
	border-radius: 6px;
	font-size: 14px;
	font-weight: 500;
	color: #334155;
	cursor: pointer;
	transition: background 0.2s;
    font-family: 'Montserrat', sans-serif;
}

.da-toggle-all:hover {
	background: #e2e8f0;
}

.da-items {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.da-item {
	background: #ffffff;
	border-radius: 4px;
	box-shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
	border-left: 4px solid var(--item-accent-color, #cbd5e1);
	overflow: hidden;
}

.da-item-header {
	display: flex;
	align-items: center;
	padding: 20px 24px;
	cursor: pointer;
	user-select: none;
    gap: 16px; /* Controllable via Elementor */
}

.da-item-icon {
	flex-shrink: 0;
	width: auto;
	height: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--item-accent-color, #cbd5e1);
	font-size: 24px;
}
.da-item-icon svg {
	width: 24px;
	height: 24px;
	fill: currentColor;
}

.da-item-titles {
	flex-grow: 1;
}

.da-item-title {
	font-size: 18px;
	font-weight: 600;
	color: var(--item-accent-color, #0f172a);
	margin-bottom: 4px;
}

.da-item-subtitle {
	font-size: 14px;
	color: #64748b;
}

.da-item-chevron {
	flex-shrink: 0;
	margin-left: auto;
	color: #94a3b8;
	transition: transform 0.3s ease;
}

.da-item.is-active .da-item-chevron {
	transform: rotate(180deg);
}

.da-item-content-wrap {
	display: none;
	border-top: 1px solid #f1f5f9;
}

.da-item-content {
	padding: 24px;
	background: #fafafa;
}

.da-inner-title {
	font-size: 12px;
	font-weight: 700;
	color: #475569;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 16px;
}

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

.da-inner-list li {
	position: relative;
	padding-left: 20px;
	margin-bottom: 12px;
	font-size: 14px;
	color: #475569;
}

.da-inner-list li:last-child {
	margin-bottom: 0;
}

.da-inner-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 6px;
	width: 0;
	height: 0;
	border-top: 4px solid transparent;
	border-bottom: 4px solid transparent;
	border-left: 6px solid var(--item-accent-color, #3b82f6);
}

/* Mobile Adjustments */
@media (max-width: 767px) {
    .da-item-header {
        flex-direction: column;
        align-items: flex-start;
        position: relative;
    }
    
    .da-item-chevron {
        position: absolute;
        top: 24px;
        right: 24px;
        margin-left: 0;
    }
}