.header-container {
	padding: 60px 0;
	background-image: url('../../img/main/header-container.jpg');
	background-size: cover;
	background-position: bottom right;
	background-repeat: no-repeat;
	height: 700px;
}

@media (max-width: 1400px) {
	.header-container {
		height: 600px;
	}
}

@media (max-width: 1200px) {
	.header-container {
		background-position: bottom right -150px;
	}
}

.header-wrapper {
	display: flex;
	align-items: flex-start;
	gap: 40px;
	flex-wrap: wrap;
}

/* Text Wrapper */
.text-wrapper {
	display: flex;
	flex-direction: column;
	gap: 20px;
	flex: 1;
	max-width: 50%;
}

.text-wrapper h1 {
	font-size: 2.5rem;
	font-weight: bold;
}

.text-wrapper h2 {
	font-size: 1.75rem;
	color: #fff;
}

.text-wrapper p {
	font-size: 1rem;
	line-height: 1.6;
	color: #fff;
	opacity: 0.8;
}

.text-wrapper img {
	height: 20%;
	width: 20%;
}

/* Image Styles */
.img-wrapper {
	flex: 1;
}

/* Responsive Styles */
@media (max-width: 991px) {
	.header-wrapper {
		flex-direction: column;
		gap: 40px;
		text-align: center;
	}

	.text-wrapper img {
		height: 20%;
		width: 20%;
		margin: 0 auto;
	}
}

.product-container {
	padding: 60px 0;
}

.section-title {
	text-align: center;
	margin-bottom: 40px;
}

.product-wrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 20px;
}

.product {
	background-color: #333333;
	border-radius: 12px;
	padding: 30px;
	text-align: center;
	flex: 1 1 calc(33.333% - 20px);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.product img {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
}

.product h3 {
	font-size: 1.5rem;
	color: #fff;
	margin: 20px 0;
}

.product .cta {
	margin-top: auto;
}

@media (max-width: 1024px) {
	.product-wrapper {
		flex-wrap: wrap;
		justify-content: space-around;
	}

	.product {
		flex: 1 1 100%;
	}
}

@media (max-width: 768px) {
	.product-wrapper {
		flex-direction: column;
		align-items: center;
	}

	.product {
		flex: 1 1 100%;
		max-width: 500px;
	}
}

/* Ogólne style */
.icon-container {
	padding: 60px 0;
	background-color: #333333;
}

/* Stylowanie dla sekcji tytułu */
.section-title {
	text-align: center;
	margin-bottom: 40px;
}

.section-title h3 {
	font-size: 1.75rem;
	color: #fff;
	margin-bottom: 10px;
	font-weight: 400;
}

.section-title h2 {
	font-size: 2rem;
	font-weight: bold;
}

/* Ustawienia dla kontenerów z ikonami */
.icon-wrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 20px;
}

/* Stylowanie dla pojedynczych ikon */
.ico {
	flex: 1 1 calc(25% - 20px); /* Dla desktop: 4 ikony w rzędzie */
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 20px;
}

.ico img {
	margin-bottom: 20px;
}

.ico h4 {
	font-size: 1.25rem;
	margin-bottom: 10px;
}

.ico p {
	font-size: 1rem;
	color: #fff;
}

/* Media Queries dla responsywności */
@media (max-width: 991px) {
	.ico {
		flex: 1 1 calc(50% - 20px); /* Dla tabletów: 2 ikony w rzędzie */
	}
}

@media (max-width: 576px) {
	.ico {
		flex: 1 1 100%; /* Dla urządzeń mobilnych: 1 ikona w rzędzie */
	}
}

/* Ogólne style */
.double-container {
	padding: 60px 0;
}

/* Stylowanie dla sekcji tytułu */
.section-title {
	text-align: center;
	margin-bottom: 40px;
}

.section-title h2 {
	font-size: 2rem;
	font-weight: bold;
}

/* Ustawienia dla kontenerów z elementami double */
.double-wrapper {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: space-between;
}

/* Stylowanie dla pojedynczych elementów double */
.double {
	flex: 1 1 calc(50% - 20px); /* Dla desktop: 2 elementy w rzędzie */
	display: flex;
	flex-direction: column;
	padding: 20px;
}

.double img {
	max-width: 100%;
	height: auto;
	margin-bottom: 20px;
	border-radius: 8px;
}

.double .strong {
	font-weight: 700;
	color: #fff;
	margin-bottom: 10px;
}

.double h4 {
	font-size: 1.5rem;
	margin-bottom: 15px;
	color: #fff;
}

.double p {
	font-size: 1rem;
	color: #fff;
	line-height: 1.6;
}

/* Media Queries dla responsywności */
@media (max-width: 991px) {
	.double {
		flex: 1 1 100%; /* Dla tabletów: 1 element w rzędzie */
	}
}

@media (max-width: 576px) {
	.double {
		flex: 1 1 100%; /* Dla urządzeń mobilnych: 1 element w rzędzie */
		padding: 15px; /* Mniejsze odstępy na mobile */
	}
}

/* Stylowanie dla kontenerów triple */
.triple-wrapper {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: space-between;
	margin-top: 60px; /* Dodatkowy odstęp nad sekcją triple */
}

.triple {
	flex: 1 1 calc(33.333% - 20px); /* 3 elementy w rzędzie na desktopie */
	display: flex;
	flex-direction: column;
	padding: 20px;
	border-radius: 8px;
}

.triple img {
	max-width: 100%;
	height: auto;
	margin-bottom: 20px;
	border-radius: 8px;
}

.triple .strong {
	font-weight: 700;
	color: #fff;
	margin-bottom: 10px;
}

.triple h4 {
	font-size: 1.5rem;
	margin-bottom: 15px;
	color: #fff;
}

.triple p {
	font-size: 1rem;
	color: #fff;
	line-height: 1.6;
}

/* Media Queries dla triple */
@media (max-width: 991px) {
	.triple {
		flex: 1 1 calc(50% - 20px); /* 2 elementy w rzędzie na tabletach */
	}
}

@media (max-width: 576px) {
	.triple {
		flex: 1 1 100%; /* 1 element w rzędzie na urządzeniach mobilnych */
		padding: 15px; /* Mniejsze odstępy na mobile */
	}
}

.footer {
	padding-bottom: 60px;
}

.footer-wrapper {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 40px;
	padding-top: 40px;
}

@media (max-width: 992px) {
	.header-container {
		background-image: url('../../img/main/header-container-mobile.jpg');
		background-size: contain;
		background-position: center bottom;
		height: 800px;
	}

	.text-wrapper {
		max-width: 100%;
	}
}

@media (max-width: 576px) {
	.header-container {
		height: 700px;
	}
}

@media (max-width: 330px) {
	.header-container {
		height: 750px;
	}
}
