/* Set default font and font size */
body {
	background-color: #111;
	color: #fff;
	font-family: Arial, sans-serif;
	font-size: 16px;
	line-height: 1.5;
}

/* Style the header */
header {
	background-color: #222;
	padding: 20px;
}

/* Style the navigation links */
nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: space-between;
}

nav a {
	color: #fff;
	text-decoration: none;
	font-weight: bold;
	font-size: 1.2rem;
	transition: all 0.3s ease-in-out;
}

nav a:hover {
	color: #ffc107;
}

/* Position the logo in the top left corner of the header */
.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #fff;
  margin-left: 20px;
}

.brand img {
  height: 100px;
  margin-right: 10px;
}

/* Style the hero section */
#hero {
	background-image: url('hero-bg.jpg');
	background-size: cover;
	background-position: center;
	height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

#hero h1 {
	font-size: 4rem;
	font-weight: bold;
	text-align: center;
	margin: 0 0 20px;
	text-shadow: 0 0 10px rgba(0,0,0,0.5);
}

#hero p {
	font-size: 1.5rem;
	margin: 0 0 30px;
	text-align: center;
	text-shadow: 0 0 10px rgba(0,0,0,0.5);
}

#hero .cta {
	background-color: #ffc107;
	color: #222;
	padding: 15px 25px;
	border-radius: 50px;
	font-size: 1.2rem;
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: 2px;
	transition: all 0.3s ease-in-out;
}

#hero .cta:hover {
	background-color: #fff;
	color: #ffc107;
}

/* Style the products section */
#products {
	padding: 50px;
}

#products h2 {
	font-size: 2.5rem;
	font-weight: bold;
	margin-bottom: 30px;
	text-align: center;
}

#products ul {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

#products li {
	margin: 0 20px 40px;
	max-width: 600px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

#products h3 {
	font-size: 2rem;
	font-weight: bold;
	margin: 0 0 20px;
}

#products p {
	font-size: 1.2rem;
	margin: 0 0 30px;
}

/* Style the features section */
#features {
	background-color: #222;
	padding: 50px;
}

#features h2 {
	color: #ffc107;
	font-size: 2.5rem;
	font-weight: bold;
	margin-bottom: 30px;
	text-align: center;
}

#features ul {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

#features li {
	margin: 0 20px 40px;
	max-width: 600px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

#features h3 {
	color: #fff;
	font-size: 2rem;
	font-weight: bold;
	margin: 0 0 20px;
}

#features p {
	color: #ccc;
	font-size:
