/* Reset styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/* Header styles */
header {
	background: linear-gradient(180deg, #4B6CB7 0%, #182848 100%);
	padding: 20px;
	text-align: center;
}

nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

nav li {
	display: inline-block;
	margin-right: 20px;
}

nav li:last-child {
	margin-right: 0;
}

nav a {
	color: #fff;
	text-decoration: none;
	font-size: 1.2em;
	transition: color 0.2s ease-in-out;
}

nav a:hover {
	color: #4B6CB7;
}

h1 {
	margin-top: 50px;
	font-size: 3em;
	color: #fff;
	text-shadow: 2px 2px #000;
}

p {
	margin: 20px 0;
	font-size: 1.2em;
	color: #fff;
}

.cta {
	display: inline-block;
	background-color: #4B6CB7;
	color: #fff;
	padding: 10px 20px;
	border-radius: 5px;
	text-decoration: none;
	transition: background-color 0.2s ease-in-out;
}

.cta:hover {
	background-color: #182848;
}

/* Feature section styles */
.features {
	margin: 50px auto;
	max-width: 1000px;
	text-align: center;
}

.features h2 {
	font-size: 2em;
	margin-bottom: 20px;
}

.features ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
}

.features li {
	flex: 1;
	margin: 0 10px;
	margin-bottom: 50px;
	text-align: left;
}

.features img {
	max-width: 100%;
	height: auto;
}

.features h3 {
	font-size: 1.5em;
	margin-bottom: 10px;
	color: #4B6CB7;
}

.features p {
	font-size: 1.2em;
	color: #333;
}

/* Download section styles */
.download {
	background-color: #f2f2f2;
	padding: 50px 20px;
	text-align: center;
}

.download h2 {
	font-size: 2em;
	margin-bottom: 20px;
	color: #333;
}

.download p {
	margin-bottom: 20px;
	font-size: 1.2em;
	color: #555;
}

.download img {
	max-width: 100%;
	height: auto;
	margin-bottom: 20px;
}

/* External links section styles */
.external-links {
	background-color: #333;
	padding: 50px 20px;
	text-align: center;
}

.external-links h2 {
	font-size: 2em;
	margin-bottom: 20px;
	color: #fff;
}

.external-links ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: center;
}

.external-links li {
	margin: 0 10px;
}

.external-links img {
	max-width: 100%;
	height: auto;
	filter: brightness(0) invert(1);
}

/* Footer styles */
footer {
	background-color: #182848;
	padding: 20px;
	text-align: center;
	color: #fff;
	font-size: 0.8em;
}