/* FAQ Accordion Styles */

.faq-section {
	padding: 60px 20px;
	background: linear-gradient(135deg, #f9f9f9 0%, #f5f5f5 100%);
}

.faq-section h2 {
	text-align: center;
	font-size: 36px;
	color: var(--gano-blue, #166c96);
	margin-bottom: 10px;
	font-weight: 700;
}

.faq-subtitle {
	text-align: center;
	color: #666;
	font-size: 16px;
	margin-bottom: 50px;
}

.faq-accordion {
	max-width: 900px;
	margin: 0 auto 50px;
}

.faq-category {
	margin-bottom: 40px;
}

.faq-category-title {
	font-size: 20px;
	font-weight: 700;
	color: var(--gano-blue, #166c96);
	margin-bottom: 20px;
	padding-left: 10px;
	border-left: 4px solid var(--gano-blue, #166c96);
	text-transform: capitalize;
}

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

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

.faq-question {
	width: 100%;
	padding: 18px 20px;
	background: white;
	border: none;
	text-align: left;
	font-size: 15px;
	font-weight: 600;
	color: #222;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: all 0.3s ease;
	gap: 20px;
}

.faq-question:hover {
	background: #f9f9f9;
	color: var(--gano-blue, #166c96);
}

.faq-question.open {
	background: #e8f4f8;
	color: var(--gano-blue, #166c96);
}

.faq-question:focus-visible {
	outline: 2px solid var(--gano-blue, #166c96);
	outline-offset: -2px;
}

.q-text {
	flex: 1;
	text-align: left;
}

.toggle-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	min-width: 24px;
	background: var(--gano-blue, #166c96);
	color: white;
	border-radius: 50%;
	font-size: 16px;
	font-weight: 700;
	transition: transform 0.3s ease;
	flex-shrink: 0;
}

.faq-question.open .toggle-icon {
	transform: rotate(45deg);
}

.faq-answer {
	background: white;
	border-top: 1px solid #eee;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer:not([hidden]) {
	max-height: 1000px;
}

.answer-content {
	padding: 20px;
	color: #444;
	font-size: 15px;
	line-height: 1.6;
}

.answer-content strong {
	color: var(--gano-blue, #166c96);
	font-weight: 700;
}

.answer-content p {
	margin: 10px 0;
}

.answer-content p:first-child {
	margin-top: 0;
}

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

.answer-content a {
	color: var(--gano-blue, #166c96);
	text-decoration: none;
	font-weight: 600;
	transition: color 0.2s ease;
}

.answer-content a:hover {
	text-decoration: underline;
}

.faq-cta {
	text-align: center;
	padding: 40px 20px;
	background: white;
	border-radius: 8px;
	margin-top: 40px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-cta p {
	margin: 0 0 15px 0;
	color: #666;
	font-size: 16px;
}

.faq-cta .btn {
	display: inline-block;
	padding: 12px 30px;
	background: var(--gano-blue, #166c96);
	color: white;
	text-decoration: none;
	border-radius: 6px;
	font-weight: 600;
	transition: all 0.3s ease;
	border: 2px solid var(--gano-blue, #166c96);
}

.faq-cta .btn:hover {
	background: transparent;
	color: var(--gano-blue, #166c96);
	box-shadow: 0 4px 12px rgba(22, 108, 150, 0.2);
}

/* Mobile responsive */
@media (max-width: 768px) {
	.faq-section {
		padding: 40px 15px;
	}

	.faq-section h2 {
		font-size: 28px;
	}

	.faq-subtitle {
		font-size: 14px;
		margin-bottom: 30px;
	}

	.faq-question {
		padding: 15px 15px;
		font-size: 14px;
		gap: 15px;
	}

	.answer-content {
		padding: 15px;
		font-size: 14px;
	}

	.toggle-icon {
		width: 20px;
		height: 20px;
		font-size: 14px;
	}

	.faq-cta {
		padding: 30px 15px;
	}

	.faq-cta p {
		font-size: 14px;
	}
}

@media (max-width: 480px) {
	.faq-section {
		padding: 30px 12px;
	}

	.faq-section h2 {
		font-size: 22px;
	}

	.faq-subtitle {
		font-size: 13px;
		margin-bottom: 20px;
	}

	.faq-category-title {
		font-size: 16px;
		margin-bottom: 15px;
	}

	.faq-item {
		margin-bottom: 10px;
	}

	.faq-question {
		padding: 12px 12px;
		font-size: 13px;
		gap: 10px;
	}

	.answer-content {
		padding: 12px;
		font-size: 13px;
	}

	.toggle-icon {
		width: 18px;
		height: 18px;
		font-size: 12px;
	}

	.faq-cta {
		padding: 20px 12px;
		margin-top: 20px;
	}

	.faq-cta p {
		font-size: 13px;
		margin-bottom: 10px;
	}

	.faq-cta .btn {
		padding: 10px 20px;
		font-size: 13px;
	}
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
	.faq-question,
	.toggle-icon,
	.faq-answer {
		transition: none;
	}
}

@media (prefers-color-scheme: dark) {
	.faq-section {
		background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
	}

	.faq-item {
		background: #333;
	}

	.faq-question {
		background: #333;
		color: #e0e0e0;
	}

	.faq-question:hover {
		background: #404040;
		color: #81bcd6;
	}

	.faq-question.open {
		background: #2d4a5b;
		color: #81bcd6;
	}

	.faq-answer {
		background: #333;
		border-top-color: #555;
	}

	.answer-content {
		color: #b0b0b0;
	}

	.answer-content strong {
		color: #81bcd6;
	}

	.answer-content a {
		color: #81bcd6;
	}

	.faq-cta {
		background: #333;
	}

	.faq-cta p {
		color: #b0b0b0;
	}
}
