.sd-28107-wrapper {
	text-align: center;
	font-family: var(--e-global-typography-primary-font-family), sans-serif;
}

.sd-28107-header {
	margin-bottom: 50px;
}

.sd-28107-main-title {
	font-size: 24px;
	font-weight: 400;
	color: var(--e-global-color-text, #475569);
	margin: 0 0 10px 0;
	line-height: 1.2;
    user-select: text; /* Make text selectable */
    -webkit-user-select: text;
}

.sd-28107-sub-title {
	font-size: 42px;
	font-weight: 700;
	color: var(--e-global-color-1960a86, #000D44);
	margin: 0;
	line-height: 1.1;
	letter-spacing: -0.02em;
    user-select: text; /* Make text selectable */
    -webkit-user-select: text;
}

.sd-28107-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
}

.sd-28107-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.sd-28107-icon {
	color: #94a3b8;
	font-size: 40px;
	margin-bottom: 25px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: color 0.3s ease, transform 0.3s ease;
}

.sd-28107-icon svg {
	width: 40px;
	height: 40px;
	fill: #94a3b8;
	transition: fill 0.3s ease;
}

.sd-28107-item:hover .sd-28107-icon {
	color: #7C3AED;
	transform: translateY(-5px);
}

.sd-28107-item:hover .sd-28107-icon svg {
	fill: #7C3AED;
}

.sd-28107-item-title {
	font-size: 20px;
	font-weight: 600;
	color: var(--e-global-color-secondary, #0f172a);
	margin: 0 0 15px 0;
}

.sd-28107-item-desc {
	font-size: 15px;
	line-height: 1.6;
	color: var(--e-global-color-text, #475569);
	margin: 0;
}

@media (max-width: 1024px) {
	.sd-28107-grid {
		gap: 30px;
	}
	.sd-28107-sub-title {
		font-size: 36px;
	}
}

@media (max-width: 767px) {
	.sd-28107-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	.sd-28107-sub-title {
		font-size: 32px;
	}
}