/* FAQ Accordion Styles */
.faq-accordion {
	max-width: 900px;
	margin: 0 auto;
}

.faq-item {
	margin-bottom: 1rem;
	border: 1px solid #e5e5e5;
	border-radius: 8px;
	background: #fff;
	transition: all 0.3s ease;
}

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

.faq-question {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.5rem 1.75rem;
	background: none;
	border: none;
	text-align: left;
	cursor: pointer;
	font-size: 1.125rem;
	font-weight: 600;
	color: #212529;
	transition: color 0.3s ease;
}

.faq-question:hover {
	color: #0088ce;
}

.faq-question:focus {
	outline: 2px solid #0088ce;
	outline-offset: 2px;
}

.faq-question-text {
	flex: 1;
	padding-right: 1rem;
}

.faq-toggle {
	font-size: 1.5rem;
	font-weight: 400;
	color: #0088ce;
	min-width: 24px;
	text-align: center;
	transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-toggle {
	transform: rotate(45deg);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease-out;
}

.faq-question[aria-expanded="true"] + .faq-answer {
	max-height: 500px;
	transition: max-height 0.5s ease-in;
}

.faq-answer-content {
	padding: 0 1.75rem 1.5rem 1.75rem;
	color: #666;
	font-size: 1rem;
	line-height: 1.7;
}

.faq-answer-content p {
	margin-bottom: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
	.faq-question {
		padding: 1.25rem 1.25rem;
		font-size: 1rem;
	}
	
	.faq-answer-content {
		padding: 0 1.25rem 1.25rem 1.25rem;
		font-size: 0.9375rem;
	}
	
	.faq-toggle {
		font-size: 1.25rem;
	}
}
