.intro-banner {
	background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
	color: #fff;
	padding: 20px 20px 10px;
	text-align: center;
}
.intro-banner h1 {
	font-size: 2.5rem;
	margin-bottom: 15px;
	font-weight: 700;
	letter-spacing: -1px;
}
.intro-banner p {
	font-size: 1.2rem;
	color: #e0e0e0;
	font-weight: 300;
}

/* 회사 비전/슬로건 섹션 */
.vision-section {
	text-align: center;
	margin-bottom: 60px;
}
.vision-section h2 {
	margin-top: 20px;
	font-size: 1.8rem;
	color: #0066cc;
	margin-bottom: 20px;
}
.vision-section p {
	font-size: 1.1rem;
	color: #555;
	max-width: 800px;
	margin: 0 auto;
	word-break: keep-all;
}

/* 사업 분야 그리드 레이아웃 */
.business-grid {
	display: flex;
	gap: 30px;
	margin-top: 40px;
	flex-wrap: wrap;
}
.business-card {
	flex: 1;
	min-width: 300px;
	background: #fff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease;
}
.business-card:hover {
	transform: translateY(-5px);
}
.card-img {
	width: 100%;
	height: 300px;
	background-size: cover;
	background-position: center;
}

/* 이미지 예시 대체 배경색 (실제 이미지 경로로 변경 필요) */
.img-bio {
	background-image: url("./img/bio_field.jpg");
	background-color: #e3faf2;
}
.img-industry {
	background-image: url("./img/industry_field.jpg");
	background-color: #e8f4fd;
}

.card-content {
	padding: 30px;
}
.card-content h3 {
	font-size: 1.4rem;
	color: #111;
	margin-bottom: 15px;
	display: flex;
	align-items: center;
	gap: 8px;
}
.card-content h3::before {
	content: "";
	display: inline-block;
	width: 4px;
	height: 16px;
	background-color: #0066cc;
	border-radius: 2px;
}

/* 파트너 브랜드 리스트 */
.brand-list {
	list-style: none;
	margin-top: 15px;
}
.brand-list li {
	padding: 8px 0;
	border-bottom: 1px dashed #eee;
	font-size: 1.05rem;
	color: #444;
	display: flex;
	justify-content: space-between;
}
.brand-list li:last-child {
	border-bottom: none;
}
.country-badge {
	font-size: 0.85rem;
	color: #888;
	background: #f0f0f0;
	padding: 2px 8px;
	border-radius: 12px;
}

@media (max-width: 768px) {
	.intro-banner h1 {
		font-size: 2rem;
	}
	.business-grid {
		flex-direction: column;
	}
}
