/* Base Container */
.ms-container-ce4d5f9a {
	width: 100%;
}

/* Header */
.ms-header-ce4d5f9a {
	margin-bottom: 40px;
}

.ms-title-ce4d5f9a {
	margin: 0 0 15px;
	font-weight: 700;
	color: #1a2b4c;
}

.ms-subtitle-ce4d5f9a {
	margin: 0;
	color: #64748b;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

/* Grid */
.ms-grid-ce4d5f9a {
	display: grid;
	gap: 30px;
}

/* Card */
.ms-card-ce4d5f9a {
	background: #ffffff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
	position: relative;
}

.ms-card-ce4d5f9a:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

/* Image */
.ms-card-image-wrapper-ce4d5f9a {
	width: 100%;
	overflow: hidden;
}

.ms-card-image-ce4d5f9a {
	width: 100%;
	height: 200px;
	object-fit: cover;
	transition: transform 0.5s ease;
	display: block;
}

.ms-card-ce4d5f9a:hover .ms-card-image-ce4d5f9a {
	transform: scale(1.05);
}

/* Content */
.ms-card-content-ce4d5f9a {
	padding: 30px;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.ms-card-icon-ce4d5f9a {
	font-size: 32px;
	color: #2563eb;
	margin-bottom: 20px;
	display: inline-flex;
}

.ms-card-icon-ce4d5f9a svg {
	width: 32px;
	height: 32px;
	fill: #2563eb;
}

.ms-card-title-ce4d5f9a {
	font-size: 20px;
	font-weight: 600;
	color: #1e293b;
	margin: 0 0 15px;
}

.ms-card-desc-ce4d5f9a {
	color: #64748b;
	margin: 0 0 25px;
	flex-grow: 1;
	line-height: 1.6;
}

/* Button */
.ms-card-btn-ce4d5f9a {
	display: inline-block;
	padding: 10px 24px;
	background-color: #f8fafc;
	color: #2563eb;
	font-weight: 500;
	text-decoration: none;
	border-radius: 6px;
	transition: all 0.3s ease;
	text-align: center;
	align-self: flex-start;
}

.ms-card-btn-ce4d5f9a:hover {
	background-color: #2563eb;
	color: #ffffff;
}
