/* Reset some basic styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: Arial, sans-serif;
	background: #00457f;
	color: #333;
}

/* Header styling */
header {
	background: #fff;
	border-bottom: 1px solid #ddd;
	padding: 10px 20px;
}

.header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.header-left,
.header-right {
	display: flex;
	align-items: center;
}

.logo {
	width: 40px;
	height: 40px;
	object-fit: contain;
}

.app-name {
	font-size: 1.8rem;
	font-weight: bold;
	margin-left: 10px;
	color: #1a4467;
}

/* Main content styling */
.main-content {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	padding: 40px 20px;
	gap: 5px;
}

/* iPhone container styling */
.iphone-container {
	flex: 1;
	display: flex;
	justify-content: center;
	max-width: 450px;
}

.iphone {
	position: relative;
	width: 300px;
	height: 600px;
	border: 10px solid #000;
	border-radius: 36px;
	overflow: hidden;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	background: #000000;
}

.andrioid {
	position: relative;
	width: 300px;
	height: 600px;
	border: 5px solid #000;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	background: #000;
}

.screen {
	width: 100%;
	height: 100%;
}

/* Content container styling */
.content-container {
	flex: 1;
	max-width: 400px;
}

.content-container h1 {
	font-size: 2.5rem;
	margin-bottom: 10px;
	color: #fff;
}

.content-container h2 {
	font-size: 1.5rem;
	margin-bottom: 20px;
	color: #dfdcdc;
}

/* QR codes styling */
.qr-codes {
	display: flex;
	gap: 20px;
}

.qr-code {
	width: 120px;
	height: 120px;
	object-fit: contain;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 8px;
	padding: 10px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Store links styling */
.store-links {
	margin-top: 20px;
}

.store-links h3 {
	font-size: 1rem;
	color: #dfdcdc;
}

.store-links a {
	display: inline-block;
	margin-right: 5px;
	text-decoration: none;
	color: #7ab2e0;
	font-weight: bold;
}

.store-links a:hover {
	text-decoration: underline;
}

@media (max-width: 768px) {
	.content-container {
		text-align: center;
		margin-top: 15px;
	}

	.qr-codes {
		display: flex;
		gap: 20px;
		justify-content: center;
	}
}
