.nycpblue_bg{background: #1e354f;color: #cecece;padding: 80px 0;}
.nycpblue_bg .home-title{color: #fff;}
.nycpblue_bg p{color: #cecece;}

.slag-section {
    max-width: 1300px;
    margin: 0 auto;
    padding: 40px 0;
    display: flex;
    align-items: flex-start;
    gap: 55px;
  }

  /* 左侧图片 */
  .slag-img {
    flex: 0 0 40%;
    max-width: 40%;
  }
  .slag-img img {
    display: block;
    max-width: 100%;
    background: #ddd; /* 图片未替换前的占位底色 */
    object-fit: cover;
  }

  /* 右侧文字 */
  .slag-content { flex: 1; min-width: 0; }
  .slag-content h2 {
    font-size: clamp(26px, 3.2vw, 42px);
    line-height: 1.3;text-align: left;
    font-weight: 700;
    margin-bottom: 28px;
  }
  .slag-content p {
    font-size: 16px;
    line-height: 2;
    margin-bottom: 32px;
    max-width: 720px;
  }
  .slag-btn {
    display: inline-block;
    background: #0d5bbf;
    color: #fff;
    font-size: 15px;
    padding: 15px 45px;
    text-decoration: none;
    transition: background .2s;
  }
  .slag-btn:hover { background: #0a4a9c; color:#fff;}

  /* 移动端：上下堆叠 */
  @media (max-width: 900px) {
    .slag-section { flex-direction: column; gap: 25px; padding: 20px; }
    .slag-img { flex: none; max-width: 100%; width: 100%; }
  }

.red-arrow {
	color: #d92b2b;
	margin-right: 10px;
	font-weight: bold;
}

h3 {
	font-size: 1.1rem;
	margin-bottom: 10px;
	color: #222;
	display: flex;
	align-items: center;
}

p {
	color: #666;
	font-size: 0.95rem;
	margin-bottom: 20px;
	line-height: 1.8;
}

/* Section 1: Top Section (Feeding/Storage/Unloading) */
.top-section {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	padding: 60px 0;
	position: relative;
	background-color: #fff;
}

/* The red decorative block on the left */
.top-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 40%; /* Adjust based on design */
	height: 100%;
	background-color: #005CB9;
	z-index: 0;
}

.top-left {
	flex: 1;
	min-width: 300px;
	position: relative;
	z-index: 1;
	padding-right: 40px;
	display: flex;
	justify-content: flex-end;
}

.technical-drawing {
	/*background: #fff;*/
	/*border: 1px solid #ddd;*/
	/*padding: 20px;*/
	/*box-shadow: 0 10px 30px rgba(0,0,0,0.1);*/
	max-width: 100%;
	height: auto;
}

.technical-drawing img {
	width: 100%;
	height: auto;
	max-width: 600px;
display: block;
border: 1px solid #ddd;
}

.top-right {
	flex: 1;
	min-width: 300px;
	padding: 40px 20px;
	position: relative;
	z-index: 1;
}

.btn-quote {
	display: inline-block;
	background-color: #005CB9;
	color: #fff;
	padding: 15px 30px;
	text-transform: uppercase;
	font-weight: bold;
	font-size: 0.85rem;
	text-decoration: none;
	margin-top: 20px;
	transition: background 0.3s;
	border: none;
	cursor: pointer;
}

.btn-quote:hover {
	background-color: #b30000;
}

/* Section 2: Bottom Section (Nord Master Core Technology) */
.bottom-section {
	position: relative;
	/* Placeholder for the dark industrial background image */
	background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://placehold.co/1920x600/333333/666666?text=Industrial+Background+Image');
	background-size: cover;
	background-position: center;
	padding: 80px 0;
	margin-top: 40px;
}

.content-card {
	border-top: 20px solid #005CB9;
	background: #fff;
	padding: 50px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 40px;
	box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.card-left {
	flex: 1;
	min-width: 300px;
}

.card-left h2 {
	font-size: 2.2rem;
	margin-bottom: 20px;
	color: #222;
	line-height: 1.2;
}

.card-left img {
	width: 100%;
	height: auto;
	border-radius: 4px;
	box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.card-right {
	flex: 1;
	min-width: 300px;
}

.feature-list li {
	list-style: none;
	margin-bottom: 15px;
	display: flex;
	align-items: flex-start;
}

.feature-list p {
	margin-bottom: 0;
	padding-left: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
	.top-section{padding: 60px 0 0;}
	.top-section::before {
		width: 100%;
		height: 300px; /* Fixed height for mobile red block */
		z-index: 0;
	}

	.top-left {
		width: 100%;
		padding-right: 0;
		margin-bottom: 40px;
		justify-content: center;
	}
	
	.technical-drawing {
		width: 90%;
	}

	.top-right {
		width: 100%;
		padding: 0 20px;
	}

	.content-card {
		padding: 30px 20px;
		flex-direction: column;
	}

	.card-left h2 {
		font-size: 1.8rem;
	}
}