.faq-container {
	max-width: 1000px;
	margin: 0 auto;
	padding: 2rem 1rem;
}

.faq-header {
	text-align: center;
	margin-bottom: 3rem;
}

.faq-header h1 {
	color: #1e3c72;
	font-size: 2.5rem;
	margin-bottom: 1rem;
}

.faq-header p {
	color: #666;
	font-size: 1.1rem;
	max-width: 700px;
	margin: 0 auto;
}

.faq-categories {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	justify-content: center;
	margin-bottom: 2rem;
}

.faq-category-btn {
	padding: 0.5rem 1.25rem;
	background: #f0f4f8;
	border: 2px solid #e0e0e0;
	border-radius: 25px;
	color: #555;
	cursor: pointer;
	font-size: 0.9rem;
	font-weight: 500;
	transition: all 0.3s ease;
}

.faq-category-btn:hover {
	background: #e8f0fe;
	border-color: #2a5298;
	color: #2a5298;
}

.faq-category-btn.active {
	background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
	border-color: #1e3c72;
	color: white;
}

.faq-section {
	margin-bottom: 2rem;
}

.faq-section-title {
	color: #1e3c72;
	font-size: 1.4rem;
	font-weight: 600;
	margin-bottom: 1rem;
	padding-bottom: 0.5rem;
	border-bottom: 2px solid #e8f0fe;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.faq-section-title svg {
	width: 24px;
	height: 24px;
	fill: #2a5298;
}

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

.faq-item:hover {
	box-shadow: 0 4px 16px rgba(42, 82, 152, 0.15);
}

.faq-question {
	padding: 1.25rem 1.5rem;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #fafbfc;
	transition: background 0.3s ease;
}

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

.faq-question h3 {
	color: #333;
	font-size: 1rem;
	font-weight: 600;
	margin: 0;
	flex: 1;
	padding-right: 1rem;
}

.faq-toggle {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: #e8f0fe;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	flex-shrink: 0;
}

.faq-toggle svg {
	width: 16px;
	height: 16px;
	fill: #2a5298;
	transition: transform 0.3s ease;
}

.faq-item.open .faq-toggle {
	background: #2a5298;
}

.faq-item.open .faq-toggle svg {
	fill: white;
	transform: rotate(180deg);
}

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

.faq-item.open .faq-answer {
	max-height: 2000px;
}

.faq-answer-content {
	padding: 0 1.5rem 1.5rem 1.5rem;
	color: #555;
	line-height: 1.7;
}

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

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

.faq-answer-content ul, .faq-answer-content ol {
	margin: 0.5rem 0 1rem 0;
	padding-left: 1.5rem;
}

.faq-answer-content li {
	margin-bottom: 0.5rem;
}

.faq-answer-content strong {
	color: #1e3c72;
}

.faq-answer-content a {
	color: #2a5298;
	text-decoration: none;
	border-bottom: 1px solid #2a5298;
}

.faq-answer-content a:hover {
	color: #1e3c72;
	border-bottom-color: #1e3c72;
}

.faq-highlight {
	background: #e8f0fe;
	padding: 1rem 1.25rem;
	border-radius: 6px;
	border-left: 4px solid #2a5298;
	margin: 1rem 0;
}

.faq-stat {
	display: inline-block;
	background: #1e3c72;
	color: white;
	padding: 0.15rem 0.5rem;
	border-radius: 4px;
	font-weight: 600;
	font-size: 0.9rem;
}

.faq-sources {
	background: #f8f9fa;
	padding: 2rem;
	border-radius: 8px;
	margin-top: 3rem;
	text-align: center;
}

.faq-sources h3 {
	color: #1e3c72;
	margin-bottom: 1rem;
}

.faq-sources p {
	color: #666;
	margin-bottom: 1rem;
}

.source-logos {
	display: flex;
	justify-content: center;
	gap: 2rem;
	flex-wrap: wrap;
	margin-top: 1rem;
}

.source-logos a {
	color: #2a5298;
	text-decoration: none;
	font-weight: 500;
	padding: 0.5rem 1rem;
	border: 1px solid #e0e0e0;
	border-radius: 4px;
	transition: all 0.3s ease;
}

.source-logos a:hover {
	background: #e8f0fe;
	border-color: #2a5298;
}

.faq-search {
	position: relative;
	max-width: 500px;
	margin: 0 auto 2rem auto;
}

.faq-search input {
	width: 100%;
	padding: 1rem 1rem 1rem 3rem;
	border: 2px solid #e0e0e0;
	border-radius: 8px;
	font-size: 1rem;
	transition: border-color 0.3s ease;
}

.faq-search input:focus {
	outline: none;
	border-color: #2a5298;
}

.faq-search svg {
	position: absolute;
	left: 1rem;
	top: 50%;
	transform: translateY(-50%);
	width: 20px;
	height: 20px;
	fill: #999;
}

.no-results {
	text-align: center;
	padding: 2rem;
	color: #666;
	display: none;
}

@media (max-width: 768px) {
	.faq-header h1 {
		font-size: 1.8rem;
	}
	
	.faq-question h3 {
		font-size: 0.95rem;
	}
	
	.faq-categories {
		gap: 0.5rem;
	}
	
	.faq-category-btn {
		padding: 0.4rem 1rem;
		font-size: 0.85rem;
	}
}