.page-header {
	text-align: center;
	padding: 2rem 0;
	border-bottom: 1px solid #eee;
	margin-bottom: 3rem;
}

.page-header h1 {
	font-size: 2.5rem;
	color: var(--secondary-color);
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
}

.page-subtitle {
	font-size: 1.25rem;
	color: var(--text-light);
	margin: 0;
}

.faq-section {
	display: block;
}

.faq-section h2 {
	color: var(--secondary-color);
	margin-bottom: 2rem;
	padding-bottom: 1rem;
	border-bottom: 2px solid var(--primary-color);
	font-size: 1.5rem;
}

.faq-item {
	background: white;
	margin-bottom: 1rem;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	transition: all 0.3s;
}

.faq-item:hover {
	box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.faq-question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.5rem;
	cursor: pointer;
	background: var(--surface);
	transition: background-color 0.3s;
}

.faq-question:hover {
	background: #f0f0f0;
}

.faq-question h3 {
	margin: 0;
	color: var(--secondary-color);
	font-size: 1.1rem;
	flex: 1;
}

.faq-question i {
	color: var(--primary-color);
	transition: transform 0.3s;
}

.faq-item.open .faq-question i {
	transform: rotate(180deg);
}

.faq-answer {
	padding: 0 1.5rem;
	max-height: 0;
	overflow: hidden;
	transition: all 0.3s;
	background: white;
}

.faq-item.open .faq-answer {
	padding: 1.5rem;
	max-height: 500px;
}

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

.faq-bottom {
	background: linear-gradient(135deg, var(--surface), white);
	padding: 3rem;
	border-radius: 12px;
	text-align: center;
	margin-top: 3rem;
}

.still-have-questions h3 {
	color: var(--secondary-color);
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
}

.still-have-questions p {
	color: var(--text-light);
	margin-bottom: 2rem;
	font-size: 1.1rem;
}

.help-actions {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}

@media (max-width: 768px) {
	.page-header h1 {
		font-size: 2rem;
		flex-direction: column;
		gap: 0.5rem;
	}

	.faq-section h2 {
		font-size: 1.3rem;
		margin-bottom: 1.5rem;
	}

	.help-actions {
		flex-direction: column;
		align-items: center;
	}
}
