/* 엘에스티 스타일 맞춤 및 세리트론 포인트 컬러(그린/연두) 적용 */
.ct-wrapper {
	font-family: "Noto Sans KR", sans-serif;
	color: #333;
	line-height: 1.6;
}
.ct-hero {
	background:
		linear-gradient(rgba(40, 60, 30, 0.8), rgba(40, 60, 30, 0.8));
	color: #fff;
	padding: 20px 20px 10px;
	text-align: center;
}
.ct-hero h1 {
	font-size: 2.8rem;
	font-weight: 700;
	letter-spacing: 2px;
	margin-bottom: 10px;
	color: #fff;
}
.ct-hero p {
	font-size: 1.2rem;
	font-weight: 300;
	color: #d4edda;
	letter-spacing: 1px;
}

.ct-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 60px 20px;
}
.ct-section-title {
	text-align: center;
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 40px;
	position: relative;
	padding-bottom: 15px;
}
.ct-section-title::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 50px;
	height: 3px;
	background-color: #8cc63f;
}

/* 특장점 스타일 */
.ct-features {
	display: flex;
	justify-content: space-between;
	gap: 30px;
	margin-bottom: 60px;
}
.ct-feat-box {
	flex: 1;
	background: #f8f9fa;
	padding: 30px;
	border-radius: 8px;
	text-align: center;
	transition: all 0.3s ease;
	border-top: 4px solid #8cc63f;
}
.ct-feat-box:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}
.ct-feat-box h3 {
	font-size: 1.3rem;
	margin-bottom: 15px;
	font-weight: 600;
	color: #2e5624;
}

/* 제품 카드 스타일 (엘에스티 메인 카드 레이아웃 반영) */
.ct-products {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
}
.ct-prod-card {
	border: 1px solid #e9ecef;
	border-radius: 8px;
	overflow: hidden;
	background: #fff;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.ct-prod-img {
	background: #fdfdfd;
	height: 280px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	border-bottom: 1px solid #f1f3f5;
}
.ct-prod-img img {
	max-height: 100%;
	max-width: 100%;
	object-fit: contain;
}
.ct-prod-info {
	padding: 25px;
	flex-grow: 1;
}
.ct-prod-info h4 {
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 12px;
	color: #111;
}
.ct-prod-info p {
	font-size: 0.95rem;
	color: #666;
	margin-bottom: 0;
	text-align: justify;
}
.ct-prod-action {
	padding: 0 25px 25px;
}
.ct-btn-view {
	display: block;
	text-align: center;
	background: #4e7d3a;
	color: #fff;
	padding: 10px;
	border-radius: 4px;
	text-decoration: none;
	font-size: 0.9rem;
	font-weight: 500;
	transition: background 0.2s;
}
.ct-btn-view:hover {
	background: #3c632d;
	color: #fff;
	text-decoration: none;
}

/* 하단 CTA 버튼 */
.ct-cta {
	text-align: center;
	margin-top: 60px;
	padding: 40px;
	background: #f1f3f5;
	border-radius: 8px;
}
.ct-cta p {
	font-size: 1.1rem;
	margin-bottom: 20px;
	font-weight: 500;
}
.ct-btn-cta {
	display: inline-block;
	background: #8cc63f;
	color: #fff;
	padding: 12px 35px;
	font-size: 1.05rem;
	font-weight: 600;
	border-radius: 4px;
	text-decoration: none;
	transition: background 0.2s;
}
.ct-btn-cta:hover {
	background: #76ab33;
	color: #fff;
	text-decoration: none;
}

/* 반응형 모바일 대응 */
@media (max-width: 767px) {
	.ct-hero h1 {
		font-size: 2rem;
	}
	.ct-features {
		flex-direction: column;
	}
	.ct-products {
		grid-template-columns: 1fr;
	}
}
