
.art-detail-box {
	width: 1200px;
	margin: 0 auto;
	padding: 30px 0;
	min-height: 400px;
}
.art-detail-box p{
	line-height: 25px;
	font-size: 16px;
	line-height: 25px;
	width:100%;
}
.article p{
	text-align: left;
}
.art-detail-box p img{
	width:80%;
	margin:0 auto;
	display: block;
}



.solutions-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
	gap: 2rem;
}

.solution-card {
	background: white;
	border-radius: 12px;
	padding: 2rem;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	border-top: 4px solid #4895ef;
}

.solution-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
	cursor: pointer;
}

.card-number {
	display: inline-block;
	width: 100px;
	height: 36px;
	background-color: #4895ef;
	color: white;
	border-radius: 5%;
	text-align: center;
	line-height: 36px;
	font-weight: bold;
	margin-bottom: 1rem;
}

.card-title {
	font-size: 1.3rem;
	color: var(--secondary);
	margin-bottom: 1rem;
	font-weight: 600;
	color: #000;
}

.card-content {
	color: #555;
}