* {
	box-sizing: border-box;
}

:root {
	--primary: #46abb6;
	--text: #062543;
	--shadow: 0 3px 0 #226468;
	--shadow-hover: 0 5px 0 #226468;
	--shadow-active: 0 2px 0 #226468;
	text-align: pretty;
}

body {
	margin: 0;
	font-family: 'Inter', sans-serif;
	color: var(--text);
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

p {
	margin: 0;
	padding: 0;
}

.landing {
	display: flex;
	justify-content: center;
	align-items: center;
	flex: 1 0 auto;
	padding: 0;
	flex-direction: column;
}

.container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 1rem;
	max-width: 1600px;
	margin: 0 auto;
	width: 100%;
}

.content-section {
	min-width: 650px;
	flex: 1 1 45%;
	max-width: 800px;
	order: 1;
	padding: 0 20px;
	display: flex;
	flex-direction: column;
	gap: clamp(20px, 5vw, 50px);
}

.heading-content {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.features-content {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.gap {
	height: 0;
}

h2 .heading {
	min-height: 80px;
}

.heading {
	font-size: clamp(32px, 7vw, 58px);
	display: flex;
	align-items: start;
	flex-wrap: wrap;
	text-align: center;
	margin-bottom: 0;
	margin-top: 0;
	gap: 10px;
}

.logo {
	width: clamp(120px, 25vw, 253px);
}

.subheading {
	font-size: clamp(20px, 4vw, 28px);
	font-weight: 600;
	margin: 0;
	margin-top: -0rem;
}

.text {
	font-size: clamp(18px, 3.5vw, 22px);
	font-weight: 400;
	line-height: 1.6;
	margin: 0;
}

.link {
	color: var(--primary);
	text-decoration: none;
	font-weight: 500;
}

.link:hover {
	text-decoration: underline;
}

.features-heading {
	font-size: clamp(20px, 4vw, 28px);
	font-weight: 600;
	margin-top: 0;
	margin-bottom: 0;
}

.feature {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 12px;
	text-align: left;
	margin-bottom: 0;
}

.feature img {
	width: 34px;
	height: 34px;
	flex-shrink: 0;
	object-fit: contain;
	display: block;
}

.feature p {
	font-size: clamp(18px, 3.5vw, 22px);
	line-height: 1.4;
	font-weight: 600;
	margin: 0 0 5px 0;
}

.feature .text {
	display: block;
	font-size: clamp(16px, 3vw, 18px);
	font-weight: 400;
	line-height: 1.5;
	margin: 0;
	max-width: 470px;
}

.image-section {
	position: relative;
	width: min(100%, 650px);
	aspect-ratio: 4/3;
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 1 45%;
	order: 1;
	margin-left: auto;
}

.image-section img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
	opacity: 0;
	transition: opacity 0.5s ease-in-out;
	border-radius: 12px;
}

.image-section img.active {
	opacity: 1;
	position: relative;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s ease;
	border: none;
	padding: 15px 80px;
	border-radius: 8px;
	margin: 0;
}

.btn-primary {
	background-color: #3da6ac;
	color: #fff;
	box-shadow: var(--shadow);
	width: 70%;
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-hover);
}

.btn-primary:active {
	transform: translateY(1px);
	box-shadow: var(--shadow-active);
}

.footer {
	text-align: center;
	padding: 1rem;
	background-color: #f9f9f9;
	border-top: 1px solid #ddd;
	flex-shrink: 0;
}

.footer p {
	margin: 0;
	font-size: 0.9rem;
}

.footer a {
	color: #46abb6;
	text-decoration: none;
}

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

	.subheading {
		margin-top: -15px;
		margin-bottom: 15px;
	}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Tablet and below */
@media (max-width: 1100px) {
	.container {
		flex-direction: column;
		justify-content: start;
		align-items: start;
		text-align: start;
		gap: 2rem;
	}

	.content-section {
		flex: 1 1 100%;
		max-width: 100%;
		order: 1;
		padding: 20px;
	}

	.image-section {
		flex: 1 1 100%;
		max-width: 600px;
		order: 1;
		margin: 0 auto;
	}

}

/* Small tablets */
@media (max-width: 900px) and (min-width: 701px) {
	.landing {
		padding: 3rem 2rem;
	}

	.image-section {
		width: min(100%, 500px);
	}

	.content-section {
		padding: 20px;
	}
}

/* Mobile */
@media (max-width: 700px) {
	.landing {
		padding: 0;
	}

	.container {
		gap: 2rem;
		padding: 0;
	}

	.image-section {
		width: min(100%, 400px);
		aspect-ratio: 4/3;
	}

	.btn {
		width: 100%;
		padding: 15px 0;
	}

	.content-section {
		flex: 1 1 100%;
		max-width: 100%;
		order: 1;
		padding: 20px;
		min-width: 0;
	}

		.subheading {
		margin-top: -5px;
		margin-bottom: 15px;
	}
}

/* Very small mobile */
@media (max-width: 400px) {
	.container {
		gap: 1.5rem;
	}

}

/* Desktop */
@media (min-width: 1101px) {
	.image-section {
		flex: 0 1 50%;
		max-width: 50%;
		margin: 0;
		width: min(100%, 700px);
		aspect-ratio: 1/1;
		align-self: stretch;
	}
}
