body {
	font-family: Arial, sans-serif;
	margin: 0;
	padding: 0;
	background-color: #f9f9f9;
	color: #333;
}

header {
	background-color: #a72222;
	color: white;
	padding: 20px;
	text-align: center;
}

.header-content {
	display: flex;
	justify-content: center;
	align-items: center;
}

#logo {
	width: 50px;
	height: auto;
	margin-right: 15px;
}

header h1 {
	margin: 0;
	font-size: 2rem;
	margin-top: 3px;
}

a {
	color: #db1e1e;
}

#searchBar {
	padding: 10px;
	width: 300px;
	margin-top: 10px;
	border: none;
	border-radius: 5px;
}

#searchButton {
	padding: 10px 20px;
	margin-left: 10px;
	border: none;
	border-radius: 5px;
	background-color: #fff;
	color: #d10000;
	cursor: pointer;
}

#searchButton:hover {
	background-color: #ddd;
}

main {
	padding: 20px;
}

.category {
	margin-bottom: 0px;
	padding-top: 40px;
}

.category h2 {
	border-bottom: 2px solid #ff0000;
	padding-bottom: 10px;
	text-align: center;
}

.category .product-pair {
	display: flex;
	justify-content: center;
	margin-bottom: 20px;
}

.product img {
	max-width: 100%;
	height: auto;
	border-radius: 5px;
}

.product h3 {
	margin: 10px 0;
}

.product p {
	font-size: 14px;
	color: #666;
}

footer {
	text-align: center;
	padding: 20px;
	background-color: #333;
	color: white;
}

#where-to-start h2 {
	font-size: 13px;
	color: #a72222;
	cursor: pointer;
}

#where-to-start .collapsed {
	display: none;
}

#toggle-header {
	margin-top: 30px;
}

.step-header {
	color: #a72222;
}

#more-products {
	margin-top: 40px;
}

#navbar {
	background-color: #410707;
	padding: 10px 0;
	position: sticky;
	top: 0;
	z-index: 1000;
}

#navbar ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	text-align: center;
}

#navbar ul li {
	display: inline;
	margin: 0 15px;
}

#navbar ul li a {
	text-decoration: none;
	color: white;
	font-size: 1.2rem;
	padding: 10px 15px;
	border-radius: 5px;
	transition: background-color 0.3s ease;
}

#navbar ul li a:hover {
	background-color: #ff6347;
}

.imgSource {
	width: 150px;
	height: auto;
	margin-right: 15px;
}

main {
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px;
	margin-top: -40px;
}

.products-container {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
}

.product {
	display: inline-block;
	width: 45%;
	background-color: white;
	padding: 15px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	border-radius: 5px;
	text-align: center;
	box-sizing: border-box;
	margin-top: 20px;
}

.cross {
	color: red;
	font-size: 20px;
	margin-left: 5px;
}

.checkmark {
	color: green;
	font-size: 22px;
	margin-left: 5px;
}

#menu-toggle {
	display: none;
	font-size: 30px;
	color: white;
	cursor: pointer;
}

@media (max-width: 768px) {
	#searchBar {
		width: 95%;
		margin-bottom: 10px;
	}

	#searchButton {
		margin-left: 0;
		margin-top: 10px;
		width: 100%;
	}

	#menu-toggle {
		display: block;
		margin: 0 10px;
		z-index: 1001;
	}

	#navbar ul {
		display: none;
		width: 100%;
		text-align: center;
	}

	#navbar ul li {
		display: block;
		margin: 10px 0;
	}

	#navbar.active ul {
		display: block;
	}

	#logo {
		display: none;
	}

	header h1 {
		font-size: 24px;
	}
}