body {
	font-family: 'Poppins', sans-serif;
	margin: 0;
	background-color: #fff;
	color: #333;
	padding-top: 20px;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

.logo {
	height: 50px;
	width: 90px;
}

/* Hero Section */
.container {
	display: flex;
	flex-direction: row;
	max-width: 1400px;
	margin: 100px auto;
	border-radius: 20px;
	overflow: hidden;
	height: auto;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.image-section {
	width: 500px;
	/* Fixed width */
	flex-shrink: 0;
	height: auto;
	overflow: hidden;
}

.image-section img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.text-section {
	flex: 1;
	background-color: #fcecec;
	padding: 40px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.text-section h2 {
	font-size: 40px;
	line-height: 60px;
	color: #444;
	font-weight: bold;
	font-family: 'Poppins', sans-serif;
}

.describtion {
	font-size: 20px;
	line-height: 42px;
}

.pdf-download-image {
	width: 200px;
	cursor: pointer;
	transition: transform 0.2s ease;
	padding-top: 15px;
}

.pdf-download-image:hover {
	transform: scale(1.05);
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
	.container {
		flex-direction: column;
		margin: 60px 40px;
	}

	.image-section {
		width: 100%;
		height: 300px;
	}

	.text-section {
		padding: 30px;
	}
}

@media (max-width: 768px) {
	.container {
		margin: 40px 20px;
	}

	.image-section {
		height: 250px;
	}

	.text-section h2 {
		font-size: 28px;
		line-height: 40px;
	}

	.describtion {
		font-size: 16px;
		line-height: 28px;
	}

	.pdf-download-image {
		width: 150px;
	}
}

@media (max-width: 480px) {
	.text-section h2 {
		font-size: 24px;
		line-height: 32px;
	}

	.describtion {
		font-size: 14px;
		line-height: 24px;
	}

	.pdf-download-image {
		width: 120px;
	}
}


/* Scroll Fade Wrapper */
.scroll-fade {
	position: relative;
	overflow: hidden;
}

.scroll-fade::after {
	content: '';
	position: absolute;
	right: 0;
	top: 0;
	width: 60px;
	height: 100%;
	background: linear-gradient(to left, #fff, rgba(255, 255, 255, 0));
	pointer-events: none;
	z-index: 1;
}

/* Gallery Containers */
.container1,
.container2,
.container3,
.container4,
.container5 {
	display: flex;
	flex-wrap: nowrap;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	gap: 24px;
	padding: 10px;
	box-sizing: border-box;
	max-width: 1600px;
	margin: 30px auto;
	justify-content: start;
}

.container1::-webkit-scrollbar,
.container2::-webkit-scrollbar,
.container3::-webkit-scrollbar,
.container4::-webkit-scrollbar,
.container5::-webkit-scrollbar {
	display: none;
}

/* Product Card Sizing */
.product-card {
	flex: 0 0 31%;
	max-width: 31%;
	scroll-snap-align: start;
}

.product-card img {
	width: 100%;
	height: 90%;
	object-fit: contain;
	border-radius: 8px;
}

.product-card .capacity {
	margin-top: 12px;
	font-size: 28px;
	font-weight: 350;
	color: #555;
}

/* Headers */
.gallery-header {
	padding-left: 350px;
	padding-bottom: 50px;
	font-family: 'Poppins', sans-serif;
}

.gallery-title {
	padding-top: 20px;
	color: #666;
	font-size: 1.5em;
	text-align: center;
	font-family: 'Poppins', sans-serif;
}


/* Responsive Adjustments */
@media (max-width: 1200px) {
	.product-card {
		flex: 0 0 45%;
		max-width: 45%;
	}
}

@media (max-width: 768px) {
	.container {
		flex-direction: column;
		height: auto;
		margin: 100px 20px;
	}

	.image-section img {
		height: auto;
		max-height: 300px;
	}

	.text-section {
		padding: 20px;
	}

	.text-section h2 {
		font-size: 32px;
	}

	.describtion {
		font-size: 22px;
		line-height: 34px;
	}

	.pdf-download-image {
		width: 250px;
	}

	.product-card {
		flex: 0 0 80%;
		max-width: none;
	}
}

@media (max-width: 600px) {
	.gallery-header {
		padding-left: 0;
		text-align: center;
	}
}