:root {
	--green: hsl(158, 64%, 52%);
	--light-green: #f5fcf8;
	--dark: #5c6b73;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	text-wrap: pretty;
}

body {
	font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji",
	"Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
	margin: 0;
	color: #333;
	line-height: 1.6;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1rem;
}
	

h1,
h2,
h3,
h4 {
	margin-top: 0;
	line-height: 1;
}

h1 {
	margin-bottom: 0.5rem;
	font-size: 3rem;
}

h2 {
	color: var(--green);
	font-size: 2rem;
}

h3 {
	font-size: 1.5rem;
}

p,
ul {
	color: #64748b;
}

a {
	color: var(--green);
	text-decoration: none;
}

img {
	max-width: 100%;
	height: auto;
}

header.hero {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	padding: 2rem 0;
	background: linear-gradient(to bottom, var(--light-green), white);
	gap: 8rem;
}

.hero-content {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2.5rem;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8rem;
	width: 100%;
}

.hero-text {
	flex: 1;
	min-width: 250px;
}

.hero img {
	width: 320px;
	height: 320px;
	object-fit: cover;
	border-radius: 50%;
	border: 4px solid white;
	box-shadow: 10px 20px 20px 0px rgba(0, 0, 0, 0.15);
}

.hero-buttons {
	margin-top: 1rem;
	display: flex;
	gap: 1rem;
}

.btn {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	padding: 0.6rem 1.2rem;
	border-radius: 5px;
	text-align: center;
}

.btn-primary {
	background: var(--green);
	color: white;
}

.btn-outline {
	border: 1px solid var(--green);
	color: var(--green);
	background-color: white;
}

.stats {
	text-align: center;
	padding: 2rem 0;
}

.stats-content {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

.stats p {
	margin: 0 20%;
}

.stats strong {
	color: var(--green);
}

.stats-grid {
	display: flex;
	justify-content: center;
	gap: 2rem;
	flex-wrap: wrap;
	margin-top: 1.5rem;
}

.stats-grid div {
	background: white;
	padding: 1rem;
	border-radius: 10px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
	flex: 1 1 250px;
	max-width: 300px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	border: 1px solid hsla(158, 64%, 52%, 0.2);
}

.stats-grid strong {
	font-size: 1.5rem;
}

.stats-grid span {
	font-size: 0.9rem;
	color: #555;
	text-align: center;
}

.info {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	padding: 2rem 0;
}

.info-content {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2.5rem;
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	width: 100%;
}

.info-text {
	flex: 1;
}

.tip {
	background: var(--light-green);
	padding: 1rem;
	border-radius: 8px;
	display: flex;
	gap: 1rem;
	align-items: flex-start;
	margin-top: 1rem;
	border: 1px solid hsla(158, 64%, 52%, 0.2);
	flex-basis: 100%;
}

.tip img {
	width: 120px;
	height: 120px;
	object-fit: cover;
	border-radius: 0.5rem;
	flex-shrink: 0;
}

.tip div {
	flex: 1;
}

.how-it-works {
	flex: 1;
	background: var(--light-green);
	padding: 1rem;
	border-radius: 8px;
	border: 1px solid hsla(158, 64%, 52%, 0.2);
}

.how-it-works ul {
	padding: 0;
	list-style: none;
}

.how-it-works ul li {
	position: relative;
	padding-left: 1.5rem;
	font-size: 0.875rem;
	margin-bottom: 0.75rem;
}

.how-it-works ul li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.2rem;
	width: 1rem;
	height: 1rem;
	background-image: url("images/icon-check-circle.svg");
	background-size: contain;
	background-repeat: no-repeat;
}

.contact {
	padding: 2rem 0;
}

.contact-content {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0;
}

.contact-grid {
	display: flex;
	flex-wrap: wrap;
}

.contact-form {
	flex: 3;
	min-width: 250px;
}

.contact-form h3 {
	padding: 0 2.5rem;
	margin: 0;
}

.contact-info {
	flex: 2;
	min-width: 250px;
	padding: 5rem 2.5rem 2.5rem 2.5rem;
}

form, .hs-form-frame {
	min-width: 250px;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

input,
textarea {
	padding: 0.5rem;
	border: 1px solid #ccc;
	border-radius: 3px;
}

button {
	border: none;
	cursor: pointer;
}

footer {
	text-align: center;
	padding: 1rem;
	background: var(--dark);
	color: white;
	font-size: 0.9rem;
}

footer p {
	color: white;
}

/* Animations */
@keyframes slideUp {
	from {
	opacity: 0;
	transform: translateY(30px);
	}
	to {
	opacity: 1;
	transform: translateY(0);
	}
}

section {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

section.visible {
	opacity: 1;
	transform: translateY(0);
}

/* Skip animation for hero section */
header.hero {
	opacity: 1;
	transform: none;
}

/* Responsive */
@media (max-width: 768px) {
	.hero-content {
		text-align: center;
		justify-content: center;
		gap: 4rem;
		padding: 0 1rem;
	}
	.stats-content,
	.info-content {
		padding: 0 2.5rem;
	}
	.stats p {
		margin: 0;
	}
	.contact-info {
		padding: 2.5rem 2.5rem 0 2.5rem;
	}
	.hero-buttons {
		justify-content: center;
		flex-direction: column;
		align-items: center;
	}
	.stats-grid {
		flex-direction: column;
		align-items: center;
		gap: 1rem;
	}
	.stats-grid div {
		width: 100%;
		max-width: none;
		height: auto;
		flex: none;
	}
	.info-content {
		flex-direction: column;
	}
	.tip {
		margin-top: 0;
		flex-basis: auto;
		flex-direction: column;
		text-align: center;
	}
	.tip img {
		width: 100px;
		height: 100px;
		align-self: center;
	}
	.contact-grid {
		flex-direction: column;
	}
}
