* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	font-family: sans-serif;
	color: white;
	background: url('desktop-bg.png') no-repeat center center;
	background-size: cover;
	min-height: 100vh;
}

.hero {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 4rem;
	min-height: 100vh;
}

.hero-content {
	flex: 1;
	max-width: 600px;
}

.logo {
	width: 150px;
	margin-bottom: 2rem;
}

h1 {
	font-size: 2.5rem;
	line-height: 1.3;
	margin-bottom: 1rem;
	font-weight: 800;
}

.highlight {
	background: #00bfff;
	color: #fff;
	padding: 0.2rem 0.4rem;
	border-radius: 4px;
}

p {
	font-size: 1.1rem;
	margin-bottom: 2rem;
	color: #d0d0d0;
}

.buttons {
	display: flex;
	gap: 1rem;
}

.btn {
	text-decoration: none;
	padding: 0.75rem 1.5rem;
	border-radius: 6px;
	font-weight: bold;
}

.primary {
	background: #00e3b8;
	color: #002a47;
}

.secondary {
	color: #fff;
	text-decoration: underline;
}

.hero-image {
	flex: 1;
	display: flex;
	justify-content: center;
}

.hero-image img {
	max-width: 70%;
}

.footer {
	text-align: center;
	font-size: 12px;
	color: #ffffff;
	margin-top: 2rem;
	padding-bottom: 16px;
}

/* Mobile styles */
@media (max-width: 768px) {
	body {
		background: url('mobile-bg.png') no-repeat center center;
		background-size: cover;
	}

	.hero {
		flex-direction: column;
		text-align: center;
		padding: 2rem;
	}

	.hero-content {
		max-width: 100%;
	}

	h1 {
		font-size: 2rem;
	}

    .buttons {
        align-items: center;
        flex-direction: column;
    }

	.hero-image {
		margin-top: 2rem;
		max-width:100%;
	}
    
}
