.tp-faq {
	--tp-primary: #61ce70;
	--tp-primary-dark: #3fa64d;
	--tp-primary-border: rgba(97, 206, 112, 0.35);
	max-width: 860px;
	margin: 0 auto;
	padding: 48px 16px;
}

.tp-faq-header {
	text-align: center;
	margin-bottom: 32px;
}

.tp-faq-heading {
	margin: 0;
	font-size: 2rem;
	font-weight: 700;
}

.tp-faq-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.tp-faq-item {
	border: 1px solid var(--tp-primary-border);
	border-radius: 12px;
	background: #ffffff;
	padding: 4px 20px;
}

.tp-faq-question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 16px 0;
	font-weight: 600;
	cursor: pointer;
	list-style: none;
}

.tp-faq-question::-webkit-details-marker {
	display: none;
}

.tp-faq-chevron {
	flex: 0 0 auto;
	width: 20px;
	height: 20px;
	color: var(--tp-primary-dark);
	transition: transform 0.2s ease;
}

.tp-faq-item[open] .tp-faq-chevron {
	transform: rotate(180deg);
}

.tp-faq-answer {
	padding: 0 0 18px;
}

.tp-faq-answer p {
	margin: 0;
	opacity: 0.75;
	line-height: 1.6;
}

@media (max-width: 640px) {
	.tp-faq-heading {
		font-size: 1.5rem;
	}
}
