/* .news-archive {
  margin: 2rem 0;
  padding: 1rem;
  border-radius: 5px;
  background: #f5f5f5;
}

.news-archive .news-title {
  margin-bottom: 1rem;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
}

.news-list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  gap: 1rem;
  margin-top: 25px;
}

.news-item {
  width: 100%;
  background: #eee;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: box-shadow 0.2s ease-in-out;
}

.news-item:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.news-image {
  width: 200px;
  height: 150px;
  object-fit: cover;
}

.news-content {
  flex: 1;
  padding: 1rem;
}

.news-header {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.news-title {
  font-size: 1.4rem;
  font-weight: bold;
  margin: 0;
}

.news-category {
  background-color: #eee;
  padding: 0.3rem 0.5rem;
  border-radius: 3px;
}

.news-excerpt {
  font-size: 1rem;
  line-height: 1.5;
}

.news-content-wrapper > img {
  object-fit: cover;
} */

.news-date,
.news-category {
	font-size: 0.8rem;
	color: #888;
	margin-bottom: 0.2rem;
}

.news-section {
	margin: 2rem 0;
	padding: 1rem;
	border-radius: 5px;
	background: #f5f5f5;
}

.news-section h2 {
	margin-bottom: 1rem;
	font-size: 1.5rem;
	font-weight: bold;
	text-align: center;
}

.news-list {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	margin-top: 25px;
	padding: 0;
}

.news-list li {
	/* margin: 1rem; */
	/* width: calc(33.33% - 2rem); */
	max-width: 460px;
	background: #fff;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	border-radius: 5px;
	overflow: hidden;
	transition: box-shadow 0.2s ease-in-out, transform 0.2s ease-in-out;
}

.news-list li:hover {
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);

	.news-list li:hover img {
		filter: grayscale(0.8);
	}

	.news-list li:hover .news-content {
		background-color: rgba(0, 0, 0, 0.1);
	}

	/* .news-list li:hover img {
      transform: scale(1.05);
  } */
}

.news-list li img {
	width: 100%;
	object-fit: cover;
	transition: transform 0.2s ease-in-out;
	max-height: 300px;
}

.news-content {
	padding: 1rem;
	width: 100%;
	/* height: 145px;
  max-height: 145px; */
}

.news-content .news-title {
	margin-bottom: 0.5rem;
	font-size: 1.2rem;
}

.news-content .news-text {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #1c1c1c;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
}

.news-button {
	display: block;
	padding: 0.75rem 1rem;
	margin-top: 1rem;
	border: none;
	border-radius: 5px;
	text-align: center;
	text-decoration: none;
	width: 90%;
	margin-bottom: 5%;

	color: #1c1c1c;
	background: #FFEB00;
	transition: all .3s;
}

.news-button:hover {
	background: #1c1c1c;
	color: #FFEB00;
}

.news-list li>a:first-child {
	width: 100%;
	display: block;
	max-height: 403px;
	overflow: hidden;
}

/* News Search and Filter Styles */
.news-search-filter-container {
	margin-bottom: 30px;
	padding: 30px;
	background: #f5f5f5;
	border-radius: 5px;
	border: none;
	margin-top: 30px;
}

.search-container {
	margin-bottom: 0;
}

/* Flex container for search and filter */
.news-search-filter-container>.search-container,
.news-search-filter-container>.filter-dropdown {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-bottom: 25px;
}

.news-search-filter-container {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.news-search-filter-container>.search-container,
.news-search-filter-container>.filter-dropdown {
	margin-bottom: 0;
}

/* Create main flex container */
.search-filter-row {
	display: flex;
	align-items: center;
	gap: 30px;
	flex-wrap: wrap;
}

.search-input-wrapper {
	position: relative;
	max-width: 500px;
	width: 100%;
}

.search-input-wrapper input {
	width: 100%;
	padding: 6px 35px 6px 35px;
	border: 2px solid #ddd;
	border-radius: 5px;
	font-size: 16px;
	background-color: #fff;
	transition: all 0.3s ease;
	font-family: 'Open Sans', sans-serif;
}

.search-input-wrapper input:focus {
	outline: none;
	border-color: #FFEB00;
	box-shadow: 0 0 10px rgba(255, 235, 0, 0.3);
}

.search-input-wrapper input::placeholder {
	color: #999;
}

.search-icon {
	position: absolute;
	left: 15px;
	top: 50%;
	transform: translateY(-50%);
	color: #1c1c1c;
	font-size: 16px;
	pointer-events: none;
}

.clear-search-btn {
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	background: none;
	border: none;
	color: #1c1c1c;
	cursor: pointer;
	padding: 8px;
	border-radius: 3px;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
}

.clear-search-btn:hover {
	background-color: #FFEB00;
	color: #1c1c1c;
}

/* Filter Dropdown Styling */
.filter-dropdown {
	display: flex;
	align-items: center;
	gap: 15px;
}

.filter-label {
	font-weight: 600;
	color: #1c1c1c;
	margin: 0;
	font-size: 16px;
	font-family: 'Open Sans', sans-serif;
}

.form-select {
	padding: 6px 15px;
	border: 2px solid #ddd;
	border-radius: 5px;
	background-color: #fff;
	font-size: 16px;
	cursor: pointer;
	transition: all 0.3s ease;
	min-width: 220px;
	font-family: 'Open Sans', sans-serif;
	color: #1c1c1c;
}

.form-select:hover {
	border-color: #FFEB00;
}

.form-select:focus {
	outline: none;
	border-color: #FFEB00;
	box-shadow: 0 0 5px rgba(255, 235, 0, 0.3);
}

/* Active Filters Display */
.active-filters {
	display: flex;
	align-items: center;
	gap: 15px;
	flex-wrap: wrap;
	padding: 15px 0 0 0;
	border-top: 2px solid #ddd;
	margin-top: 15px;
}

.active-filters-label {
	font-weight: 600;
	color: #1c1c1c;
	font-size: 16px;
	margin: 0;
	font-family: 'Open Sans', sans-serif;
}

.filter-tags {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.filter-tag {
	display: inline-flex;
	align-items: center;
	background: #FFEB00;
	color: #1c1c1c;
	padding: 8px 15px;
	border-radius: 5px;
	font-size: 14px;
	font-weight: 600;
	border: none;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	font-family: 'Open Sans', sans-serif;
	gap: 8px;
}

.filter-tag-remove {
	background: none;
	border: none;
	color: #1c1c1c;
	cursor: pointer;
	padding: 2px 4px;
	border-radius: 3px;
	font-size: 16px;
	line-height: 1;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	margin-left: 5px;
}

.filter-tag-remove:hover {
	background-color: rgba(28, 28, 28, 0.1);
	transform: scale(1.1);
}

.btn-link {
	background: transparent;
	border: 2px solid #dc3545;
	color: #dc3545;
	text-decoration: none;
	cursor: pointer;
	font-size: 14px;
	padding: 8px 15px;
	border-radius: 5px;
	transition: all 0.3s ease;
	font-family: 'Open Sans', sans-serif;
	font-weight: 600;
}

.btn-link:hover {
	background-color: #dc3545;
	color: #fff;
	border-color: #dc3545;
	text-decoration: none;
}

/* No Results Styling */
.no-results-container {
	text-align: center;
	padding: 60px 20px;
	background: #f5f5f5;
	border-radius: 5px;
	border: 2px dashed #ddd;
	margin: 40px 0;
}

.no-results-content {
	max-width: 400px;
	margin: 0 auto;
}

.no-results-icon {
	font-size: 48px;
	color: #ddd;
	margin-bottom: 20px;
}

.no-results-title {
	font-size: 24px;
	font-weight: 600;
	color: #1c1c1c;
	margin: 0 0 15px 0;
	font-family: 'Open Sans', sans-serif;
}

.no-results-text {
	font-size: 16px;
	color: #666;
	line-height: 1.5;
	margin: 0 0 25px 0;
	font-family: 'Open Sans', sans-serif;
}

.btn-secondary {
	background: #FFEB00;
	color: #1c1c1c;
	border: 2px solid #FFEB00;
	padding: 12px 24px;
	border-radius: 5px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-block;
	font-family: 'Open Sans', sans-serif;
}

.btn-secondary:hover {
	background: #1c1c1c;
	color: #FFEB00;
	border-color: #1c1c1c;
	transform: none;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Screen Reader Only */
.sr-only {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

/* Responsive Design */
@media (max-width: 768px) {
	.news-search-filter-container {
		padding: 20px 15px;
	}

	.filter-dropdown {
		flex-direction: column;
		align-items: stretch;
		gap: 10px;
	}

	.form-select {
		min-width: auto;
		width: 100%;
	}

	.search-input-wrapper {
		max-width: 100%;
	}

	.active-filters {
		flex-direction: column;
		align-items: stretch;
		gap: 10px;
	}

	.filter-tags {
		justify-content: center;
	}
}

.text-center {
	text-align: center;
}

.page-des h3 {
	margin-top: 10px;
	font-size: 19px;
	padding: 3px;
}

.page-des ul {
	padding: 5px 25px;
}

.page-des ul li {
    list-style: disc;
    padding: 4px;
}

.news-section {
    margin: 2rem 0;
    padding: 1rem;
    border-radius: 5px;
    background: #f5f5f5;
}

.news-section h2 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
}

.news-list {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0 -1rem;
    padding: 0;
}

.news-list li {
    margin: 1rem;
    /* width: calc(33.33% - 2rem); */
    max-width: 400px;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    overflow: hidden;
    transition: box-shadow 0.2s ease-in-out, transform 0.2s ease-in-out;
}

.news-list li:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    .news-list li:hover img {
        filter: grayscale(0.8);
    }
    .news-list li:hover .news-content {
        background-color: rgba(0, 0, 0, 0.1);
    }
    /* .news-list li:hover img {
        transform: scale(1.05);
    } */
}

.news-list li img {
    width: 100%;
    object-fit: cover;
    transition: transform 0.2s ease-in-out;
    min-height: 300px;
    max-height: 300px;
}

.news-content {
    padding: 1rem;
    width: 100%;
    /* height: 145px; */
    max-height: fit-content;
}

.news-content .news-title {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.news-date,
.news-category {
  font-size: 0.8rem;
  color: #888;
  margin-bottom: 0.2rem;
}

.news-button {
    display: block;
    padding: 0.75rem 1rem;
    margin-top: 1rem;
    border: none;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    width: 90%;
    margin-bottom: 5%;

    color: #1c1c1c;
	background: #FFEB00;
	transition: all .3s;
}

.news-button:hover {
    background: #1c1c1c;
	color: #FFEB00;
}

.news-list li > a:first-child {
    width: 100%;
    display: block;
    max-height: 403px;
    overflow: hidden;
}

.page-des a, .container.mt25 div > span > a {
	color: #B8A500;
	text-decoration: underline;
}

/* Simple Article Enhancements */
.article-hero {
	margin: 2rem 0;
	text-align: center;
}

.hero-image {
	width: 100%;
	max-width: 800px;
	height: 300px;
	object-fit: cover;
	border-radius: 8px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.content-section {
	margin: 2rem 0;
	padding: 1.5rem;
	background: #f8f9fa;
	border-radius: 8px;
	border-left: 4px solid #FFEB00;
}

.section-image {
	float: right;
	margin: 0 0 1rem 1.5rem;
	width: 390px;
	height: 270px;
	object-fit: cover;
	border-radius: 6px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	background-color: #fff;
}

.product-section {
	margin: 3rem 0;
	padding: 2rem;
	background: #ffffff;
	border: 1px solid #e9ecef;
	border-radius: 8px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.product-section h3 {
	color: #1c1c1c;
	border-bottom: 2px solid #FFEB00;
	padding-bottom: 0.5rem;
	margin-bottom: 1.5rem;
}

.product-image {
	float: left;
	margin: 0 1.5rem 1rem 0;
	width: 250px;
	height: 180px;
	object-fit: cover;
	border-radius: 6px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.company-section {
	margin: 2rem 0;
	padding: 1.5rem;
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	border-radius: 8px;
}

.cta-box {
	margin: 2rem 0;
	padding: 1.5rem;
	background: linear-gradient(135deg, #FFEB00 0%, #FFF8B3 100%);
	border-radius: 8px;
	border: 2px solid #1c1c1c;
	text-align: center;
	font-size: 1.1rem;
	line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.hero-image {
		height: 200px;
	}
	
	.section-image,
	.product-image {
		float: none;
		display: block;
		margin: 1rem auto;
		width: 100%;
		max-width: 400px;
	}
	
	.content-section,
	.product-section {
		padding: 1rem;
	}
}

/* Enhanced News Article Styles */

/* Hero Image Section */
.news-hero-image {
	position: relative;
	width: 100%;
	margin: 2rem 0;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.news-hero-image img {
	width: 100%;
	height: 400px;
	object-fit: cover;
	display: block;
}

.news-hero-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
	padding: 2rem;
}

.news-hero-stats {
	display: flex;
	justify-content: space-around;
	align-items: center;
	gap: 2rem;
}

.stat-item {
	text-align: center;
	color: white;
}

.stat-number {
	display: block;
	font-size: 2rem;
	font-weight: bold;
	color: #FFEB00;
	margin-bottom: 0.5rem;
}

.stat-label {
	font-size: 0.9rem;
	opacity: 0.9;
}

/* Intro Highlight */
.news-intro-highlight {
	background: linear-gradient(135deg, #FFEB00 0%, #FFF8B3 100%);
	padding: 1.5rem;
	border-radius: 8px;
	border-left: 5px solid #1c1c1c;
	margin: 2rem 0;
	font-size: 1.1rem;
	line-height: 1.6;
	box-shadow: 0 4px 15px rgba(255, 235, 0, 0.2);
}

/* Content with Image Layout */
.content-with-image {
	display: flex;
	gap: 2rem;
	margin: 2rem 0;
	align-items: center;
}

.content-text {
	flex: 2;
	font-size: 1rem;
	line-height: 1.6;
}

.content-image {
	flex: 1;
	min-width: 300px;
}

.content-image img {
	width: 100%;
	height: 250px;
	object-fit: cover;
	border-radius: 8px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Highlight Boxes */
.highlight-box {
	background: #f8f9fa;
	border: 2px solid #FFEB00;
	border-radius: 8px;
	padding: 1.5rem;
	margin: 2rem 0;
	position: relative;
}

.highlight-box h4 {
	margin: 0 0 1rem 0;
	color: #1c1c1c;
	font-size: 1.2rem;
}

.highlight-box p {
	margin: 0;
	line-height: 1.6;
}

/* Products Showcase */
.products-showcase h3 {
	background: linear-gradient(135deg, #1c1c1c 0%, #333 100%);
	color: #FFEB00;
	padding: 1rem 1.5rem;
	border-radius: 8px;
	margin: 3rem 0 2rem 0;
	font-size: 1.4rem;
	box-shadow: 0 4px 15px rgba(28, 28, 28, 0.2);
}

/* Product Features */
.product-feature {
	display: flex;
	gap: 2rem;
	margin: 2rem 0;
	background: #f8f9fa;
	border-radius: 8px;
	padding: 1.5rem;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.product-content {
	flex: 2;
}

.product-image {
	flex: 1;
	min-width: 250px;
}

.product-image img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	border-radius: 6px;
}

.feature-highlight {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 1rem;
	padding: 0.75rem;
	background: #FFEB00;
	border-radius: 6px;
	font-weight: 600;
}

.feature-icon {
	font-size: 1.2rem;
}

/* Certification Badge */
.certification-badge {
	display: flex;
	align-items: center;
	gap: 1rem;
	background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
	color: white;
	padding: 1rem 1.5rem;
	border-radius: 8px;
	margin: 1.5rem 0;
	box-shadow: 0 4px 15px rgba(40, 167, 69, 0.2);
}

.cert-icon {
	font-size: 2rem;
}

.cert-content strong {
	display: block;
	font-size: 1.1rem;
	margin-bottom: 0.25rem;
}

.cert-content span {
	opacity: 0.9;
	font-size: 0.9rem;
}

/* Tech Specs */
.tech-specs {
	background: #ffffff;
	border: 1px solid #e9ecef;
	border-radius: 8px;
	padding: 1.5rem;
	margin: 2rem 0;
}

.tech-specs h4 {
	margin: 0 0 1rem 0;
	color: #1c1c1c;
	border-bottom: 2px solid #FFEB00;
	padding-bottom: 0.5rem;
}

.tech-specs ul {
	margin: 0;
	padding-left: 1.5rem;
}

.tech-specs li {
	margin-bottom: 0.5rem;
	line-height: 1.5;
}

/* Temperature Range Display */
.temperature-range {
	background: linear-gradient(135deg, #17a2b8 0%, #6f42c1 100%);
	color: white;
	padding: 1.5rem;
	border-radius: 8px;
	margin: 1.5rem 0;
	text-align: center;
}

.temperature-range h4 {
	margin: 0 0 1rem 0;
	font-size: 1.1rem;
}

.temp-display {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
}

.temp-cold, .temp-hot {
	background: rgba(255, 255, 255, 0.2);
	padding: 0.5rem 1rem;
	border-radius: 20px;
	font-weight: bold;
	font-size: 1.1rem;
}

.temp-bar {
	flex: 1;
	height: 4px;
	background: linear-gradient(to right, #007bff, #dc3545);
	border-radius: 2px;
	max-width: 200px;
}

/* Protection Levels */
.protection-levels {
	margin: 2rem 0;
}

.protection-levels h4 {
	margin-bottom: 1rem;
	color: #1c1c1c;
}

.ip-ratings {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.ip-badge {
	padding: 0.75rem 1.5rem;
	border-radius: 25px;
	font-weight: bold;
	color: white;
	text-align: center;
	min-width: 80px;
}

.ip-badge.ip-66 {
	background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.ip-badge.ip-68 {
	background: linear-gradient(135deg, #17a2b8 0%, #6f42c1 100%);
}

.ip-badge.ip-69 {
	background: linear-gradient(135deg, #dc3545 0%, #fd7e14 100%);
}

/* Company Highlight */
.company-highlight {
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	border-radius: 10px;
	padding: 2rem;
	margin: 3rem 0;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.company-stats {
	display: flex;
	gap: 2rem;
	align-items: center;
}

.company-image {
	flex: 1;
	min-width: 300px;
}

.company-image img {
	width: 100%;
	height: 250px;
	object-fit: cover;
	border-radius: 8px;
}

.company-content {
	flex: 2;
}

.company-content h4 {
	margin: 0 0 1rem 0;
	color: #1c1c1c;
	font-size: 1.3rem;
}

/* Services Grid */
.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 1.5rem;
	margin: 2rem 0;
}

.service-item {
	background: white;
	border: 2px solid #f8f9fa;
	border-radius: 8px;
	padding: 1.5rem;
	text-align: center;
	transition: all 0.3s ease;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.service-item:hover {
	border-color: #FFEB00;
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.service-icon {
	font-size: 2.5rem;
	margin-bottom: 1rem;
	display: block;
}

.service-item h4 {
	margin: 0 0 0.5rem 0;
	color: #1c1c1c;
	font-size: 1.1rem;
}

.service-item p {
	margin: 0;
	color: #666;
	font-size: 0.9rem;
	line-height: 1.4;
}

/* Certifications */
.certifications {
	background: #f8f9fa;
	border-radius: 8px;
	padding: 1.5rem;
	margin: 2rem 0;
}

.certifications h4 {
	margin: 0 0 1rem 0;
	color: #1c1c1c;
}

.cert-badges {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.cert-badge {
	background: linear-gradient(135deg, #007bff 0%, #6610f2 100%);
	color: white;
	padding: 0.5rem 1rem;
	border-radius: 20px;
	font-size: 0.9rem;
	font-weight: 600;
}

/* CTA Section */
.cta-section {
	background: linear-gradient(135deg, #FFEB00 0%, #FFF8B3 100%);
	border: 2px solid #1c1c1c;
	border-radius: 10px;
	padding: 2rem;
	margin: 3rem 0;
	text-align: center;
	box-shadow: 0 8px 25px rgba(255, 235, 0, 0.2);
}

.cta-section h4 {
	margin: 0 0 1rem 0;
	color: #1c1c1c;
	font-size: 1.4rem;
}

.cta-section p {
	margin: 0;
	font-size: 1.1rem;
	line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
	.news-hero-stats {
		flex-direction: column;
		gap: 1rem;
	}
	
	.stat-number {
		font-size: 1.5rem;
	}
	
	.content-with-image,
	.product-feature,
	.company-stats {
		flex-direction: column;
	}
	
	.content-image,
	.product-image,
	.company-image {
		min-width: auto;
	}
	
	.services-grid {
		grid-template-columns: 1fr;
	}
	
	.ip-ratings {
		justify-content: center;
	}
	
	.cert-badges {
		justify-content: center;
	}
	
	.temp-display {
		flex-direction: column;
		gap: 0.5rem;
	}
	
	.temp-bar {
		width: 150px;
		max-width: none;
	}
}

@media (max-width: 480px) {
	.news-hero-image img {
		height: 250px;
	}
	
	.news-hero-overlay {
		padding: 1rem;
	}
	
	.products-showcase h3 {
		font-size: 1.2rem;
		padding: 0.75rem 1rem;
	}
	
	.cta-section {
		padding: 1.5rem;
	}
	
	.cta-section h4 {
		font-size: 1.2rem;
	}
}