body {
	margin: 0;
	font-family: -apple-system, BlinkMacSystemFont, sans-serif;
	height: 100%;
}

header {
	background-color: orange;
	color: white;
	padding: 5px 20px;
	margin: 0;
	font-family: -apple-system, BlinkMacSystemFont, sans-serif;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

header a {
	text-decoration: none;
	color: white;
}

main {
	margin: 0 20px;
}

.branding {
	display: flex;
	align-items: center;
	gap: 10px;
}

.branding .icon {
	height: 50px;
	width: 50px;
}

.branding h1 {
	margin: 0;
	font-size: 1.5rem;
}

nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 1rem;
	align-items: center;
}

nav a {
	text-decoration: none;
	color: white;
	font-weight: 500;
	padding: 5px;
}

nav a:hover {
	text-decoration: none;
	border-bottom: 1px solid white;
}

nav a.active {
	border-bottom: 2px solid white;
}

.subtitle {
	color: grey;
	padding-left: 10px;
}

.privacy-policy-body {
	margin: 0 20px;
}

.list {
	list-style-type: circle;
}

.ordered-list {
	list-style-type: lower-alpha;
}

.list-header {
	font-weight: bold;
}

.download-icon {
	width: 150px;
	height: 50px;
	vertical-align: middle;
	object-fit: contain;
}

/* 2) Wrapper is a column flexbox and at least viewport-high */
.site-wrapper {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	/* <-- full viewport height */
}

/* 3) Main content grows to push footer down */
.content {
	flex: 1;
	padding: 0 2rem;
	margin: 1rem 0;
}

.screenshots {
	margin-top: 1rem;
	clear: both;
}

/* 4) Footer styling stays the same */
.site-footer {
	background: #f8f9fa;
	text-align: center;
	padding: 1.5rem 1rem;
	font-size: 0.9rem;
	color: #666;
}

/* Optional link styles */
.site-footer .footer-links a {
	color: #007aff;
	text-decoration: none;
	margin: 0 0.25rem;
}

.site-footer .footer-links a:hover {
	text-decoration: underline;
}

.ios img,
.ipados img {
	/* float: left; */
	display: inline-block;
	margin-right: 2rem;
	margin-bottom: 1rem;
}

.ios img {
	width: 200px;
	border-radius: 27px;
}

.ipados {
	clear: both;
	margin-top: 1rem;
}

.ipados img {
	width: 300px;
	border-radius: 7px;
}

.marketing {
	display: inline-flex;
	/* background-color: green; */
}

.marketing-content {
	margin-right: 10px;
}

.marketing .marketing-img {
	height: 200px;
	margin: auto;
	border-radius: 15px;
}
