/* Add global styles here */
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	font-family: "Open Sans", sans-serif;
	background-color: #f8f8f8;
}

/* Style the header */
header {
	background-color: #333;
	color: #fff;
	padding: 10px;
	position: sticky;
	top: 0;
	z-index: 1;
}

.header-logo {
	float: left;
}

.header-menu {
	float: right;
}

.header-menu li {
	display: inline-block;
	margin-left: 20px;
}

.header-menu a {
	color: #fff;
	text-decoration: none;
	transition: all 0.3s ease;
}

.header-menu a:hover {
	color: #ffd700;
}

/* Style the main section */
main {
	max-width: 960px;
	margin: 0 auto;
	padding: 40px 20px;
}

/* Style the hero section */
.hero {
	text-align: center;
	margin-bottom: 60px;
}

.hero h1 {
	font-size: 48px;
	margin-bottom: 20px;
	line-height: 1.2;
}

.hero p {
	font-size: 20px;
	line-height: 1.5;
	margin-bottom: 40px;
}

.cta-button {
	display: inline-block;
	background-color: #ffd700;
	color: #333;
	padding: 16px 30px;
	font-size: 20px;
	font-weight: bold;
	border-radius: 5px;
	text-decoration: none;
	transition: all 0.3s ease;
}

.cta-button:hover {
	background-color: #c7a500;
}

/* Style the features section */
.features {
	margin-bottom: 60px;
}

.features h2 {
	font-size: 36px;
	margin-bottom: 20px;
	line-height: 1.2;
	text-align: center;
}

.features ul {
	
	padding-left: 10px;
}

.features li {
	font-size: 20px;
	line-height: 1.5;
	margin-bottom: 10px;
}

.feature-icon {
	font-size: 48px;
	margin-bottom: 20px;
}

/* Style the screenshots section */
.screenshots {
	margin-bottom: 60px;
}

.screenshots h2 {
	font-size: 36px;
	margin-bottom: 20px;
	line-height: 1.2;
	text-align: center;
}

.screenshots img {
	max-width: 100%;
	margin-bottom: 20px;
	border: 5px solid #fff;
	box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
	border-radius: 5px;
display:inline-block; height:250px; margin-right:10px;
}

/* Style the reviews section */
.reviews {
	margin-bottom: 60px;
}

.reviews h2 {
	font-size: 36px;
	margin-bottom: 20px;
	line-height: 1.2;
	text-align: center;
}

blockquote {
	background-color: #fff;
	border: 1px solid #ccc;
	padding: 20px;
	margin-bottom: 20px;
}

blockquote p {
	font-size: 20px;
	line-height: 1.5;
	margin-bottom: 10px;
}

blockquote cite {
	font-style: italic;
}

/* Style the download section */
.download {
	text-align: center;
}

.download h2 {
	font-size: 36px;
	margin-bottom: 20px;
	line-height: 1.2;
	text-align: center;
}

.download-btn {
	display: inline-block;
	background-color: #333;
	color
}