.faq-list {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.faq-item {
	padding-bottom: 1rem;
	border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
	padding-bottom: 0;
	border-bottom: none;
}

.faq-question {
	margin-bottom: 0.5rem;
	font-size: 1.0625rem;
	color: var(--text-primary);
}

.faq-answer {
	margin: 0;
	color: var(--text-secondary);
	line-height: 1.6;
}

.feedback-form {
	max-width: 600px;
}

.feedback-form textarea {
	min-height: 150px;
}

.form-error {
	color: var(--error);
	font-size: 0.875rem;
	margin-top: 0.375rem;
}
