:root {
	--main-bg: #181a20;
	--card-bg: #22232d;
	--accent: #51c6e7;
	--accent2: #574feb;
	--text-light: #fff;
	--text-muted: #dadada;
	--cta: #51c6e7;
	--cta-hover: #574feb;
	--radius: 0.7rem;
	--transition: 5s;
	--shadow: 0 4px 24px #0008;
	--content-width: 400px;
	--font-title: 'Inter', Arial, sans-serif;
	--subtitle-size: 1.48rem;
}

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

p {
	margin-bottom: 1.4rem;
}

body {
	font-family: Poppins, sans-serif;
	margin: 0;
	padding: 0;
	background: linear-gradient(144deg, #181a20 0, #22232d 100%);
	color: var(--text-light);
	display: flex;
	flex-direction: column;
}
.container {
	max-width: var(--content-width);
	margin: 2rem auto;
	background: var(--card-bg);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	padding: 2.3rem 1.5rem 2rem 1.5rem;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.header {
	text-align: center;
}
.title {
	font-family: var(--font-title);
	font-weight: 900;
	line-height: 1.15;
	background: linear-gradient(90deg, var(--accent), var(--accent2));
	background-clip: text;
	color: transparent;
	letter-spacing: -0.03em;
}
.header-title {
	font-size: 2rem;
	margin: 0 0 1.85rem 0;
}
.main-img {
	width: 100%;
	max-width: 340px;
	border-radius: var(--radius);
	box-shadow: 0 3px 16px #0005;
	margin-bottom: 1rem;
	margin-top: 8px;
	background: #23263a;
}
.sub-section {
	width: 100%;
	text-align: center;
	margin-bottom: 1.35rem;
}
.sub-section h2 {
	font-size: var(--subtitle-size);
	margin-bottom: 0.9rem;
	margin-top: 2rem;
}
ul li {
	list-style: none;
	padding: 0;
	margin-bottom: 0.7rem;
}
ul li::before {
	display: inline-block;
	width: 1.4em;
	margin-left: -1em;
}
ul li.item-1::before {
	content: '🦠';
}
ul li.item-2::before {
	content: '🥛';
}
ul li.item-3::before {
	content: '♻️';
}
ul li.item-4::before {
	content: '🌿';
}
.benefits {
	color: var(--text-muted);
	list-style: disc;
	margin: 0 0 1.1em 1em;
	padding: 0;
	text-align: left;
	font-size: 0.99em;
	line-height: 1.6;
}
.single-image {
	margin-top: 3rem;
}
.secondary-img {
	width: 100%;
	max-width: 28 0px;
	border-radius: 0.7rem;
	margin: 0.8em auto 0 auto;
	box-shadow: 0 2px 8px #0005;
	display: block;
}
.cta-section {
	margin-block: 8px;
	width: 100%;
	text-align: center;
}

.cta-icon {
	margin-bottom: -0.1rem;
}

.cta-btn {
	display: inline-block;
	justify-content: center;
	align-items: center;
	padding: 1rem 1.5rem;
	font-size: 1.12em;
	font-weight: 700;
	border: none;
	border-radius: 0rem;
	background: linear-gradient(90deg, var(--cta), var(--cta-hover) 98%);
	color: #22232d;
	cursor: pointer;
	transition:
		transform 350ms,
		color 350ms;
	box-shadow: 0 1px 10px #2225;
	text-decoration: none;
	margin-top: 4px;
}
.cta-btn:focus,
.cta-btn:hover {
	background: linear-gradient(90deg, var(--cta-hover), var(--cta));
	color: #fff;
	transform: translateY(-2px);
	outline: 0;
}
.faq-section {
	margin: 2em auto;
	max-width: 420px;
	width: 100%;
}
.faq-title {
	text-align: center;
	font-size: var(--subtitle-size);
	margin-bottom: 1.4rem;
}
.faq-list {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 0.6em;
}
.faq-item {
	width: 100%;
	border-radius: 0.5em;
	overflow: hidden;
	background: #23263a;
	box-shadow: 0 0 10px #0003;
}
.faq-question {
	font-family: Poppins, sans-serif;
	width: 100%;
	background: #23263a;
	color: var(--text-light, #fff);
	border: none;
	outline: 0;
	text-align: left;
	font-size: 1em;
	padding: 1em 1.2em 1em 1em;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	transition: background 0.15s;
}
.faq-question:hover {
	background: #283042;
}
.faq-arrow {
	transition: transform 0.2s;
	margin-left: 10px;
}
.faq-item.active .faq-arrow {
	transform: rotate(180deg);
}
.faq-answer {
	display: none;
	background: #424763;
	color: #fff;
	font-size: 0.97em;
	padding: 0.8em 1.2em;
	border-top: 1px solid #282943;
	animation: fadeIn 0.5s;
}
.faq-item.active .faq-answer {
	display: block;
}
@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(-0.2em);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
@keyframes fadeOut {
	from {
		opacity: 1;
		transform: translateY(0);
	}
	to {
		opacity: 0;
		transform: translateY(-0.2em);
	}
}
.guarantee {
	color: var(--text-muted);
	font-size: 0.94em;
	margin-top: 1.7rem;
	text-align: center;
}
@media (max-width: 600px) {
	.container {
		background: none;
		box-shadow: none;
		max-width: none;
		margin: 0 auto;
		padding: 2rem 1.8rem;
	}
	.main-img,
	.secondary-img {
		max-width: 98vw;
	}
	.header-title {
		font-size: 1.68rem;
	}
	.sub-section h2 {
		font-size: 1.38rem;
	}
	.cta-btn {
		font-size: 1em;
		padding: 0.84em 1.5em;
	}
}
