/* Header Styling */
.synoveo-faq-header {
	background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	padding: 30px;
	margin-bottom: 30px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
}

.header-branding {
	display: flex;
	align-items: center;
	gap: 20px;
}

.synoveo-logo {
	height: 48px;
	width: auto;
}

.header-text h1 {
	margin: 0;
	font-size: 28px;
	color: #1f2937;
	font-weight: 700;
}

.header-subtitle {
	margin: 5px 0 0 0;
	color: #6b7280;
	font-size: 16px;
	font-weight: 500;
}

.google-partnership {
	text-align: center;
}

.partnership-badge {
	background: linear-gradient(135deg, #10b981 0%, #059669 100%);
	color: white;
	padding: 15px 20px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	gap: 12px;
	box-shadow: 0 4px 6px -1px rgba(16, 185, 129, 0.3);
}

.google-logo {
	height: 32px;
	width: auto;
}

.official-text {
	font-weight: 700;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

/* Enhanced FAQ Items */
.revenue-highlight {
	border: 2px solid #10b981 !important;
	background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%) !important;
	position: relative;
}

.competitive-advantage {
	border: 2px solid #4f46e5 !important;
	background: linear-gradient(135deg, #eff6ff 0%, #e0e7ff 100%) !important;
	position: relative;
}

.revenue-badge, .competitive-badge {
	position: absolute;
	top: -12px;
	right: 20px;
	background: linear-gradient(135deg, #10b981 0%, #059669 100%);
	color: white;
	padding: 6px 12px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	box-shadow: 0 2px 4px rgba(16, 185, 129, 0.3);
}

.competitive-badge {
	background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
	box-shadow: 0 2px 4px rgba(79, 70, 229, 0.3);
}

.stats-highlight {
	background: rgba(16, 185, 129, 0.1);
	border: 1px solid rgba(16, 185, 129, 0.2);
	border-radius: 8px;
	padding: 15px;
	margin-top: 15px;
}

.stat-number {
	color: #059669;
	font-weight: 700;
	font-size: 16px;
}

.advantage-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
	gap: 12px;
	margin-top: 15px;
}

.advantage-item {
	background: rgba(79, 70, 229, 0.1);
	border: 1px solid rgba(79, 70, 229, 0.2);
	border-radius: 6px;
	padding: 10px;
	text-align: center;
	font-size: 13px;
	font-weight: 600;
	color: #4338ca;
}

.advantage-icon {
	display: block;
	font-size: 18px;
	margin-bottom: 4px;
}

.synoveo-steps {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-top: 20px;
}

.synoveo-step {
	display: flex;
	align-items: flex-start;
	gap: 15px;
	padding: 20px;
	background: #f8f9fa;
	border-radius: 8px;
	border-left: 4px solid #4f46e5;
}

.step-number {
	background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
	color: white;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	font-size: 18px;
	flex-shrink: 0;
}

.step-content h3 {
	margin: 0 0 8px 0;
	color: #1f2937;
	font-size: 16px;
}

.step-content p {
	margin: 0;
	color: #6b7280;
	line-height: 1.5;
}

.faq-container {
	margin-top: 20px;
}

.faq-item {
	background: #f8f9fa;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	padding: 20px;
	margin-bottom: 15px;
	transition: box-shadow 0.2s ease;
}

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

.faq-item h3 {
	color: #1f2937;
	margin: 0 0 12px 0;
	font-size: 16px;
	font-weight: 600;
}

.faq-item p {
	margin: 0 0 8px 0;
	color: #4b5563;
	line-height: 1.6;
}

.faq-item ul {
	margin: 8px 0 0 20px;
	color: #4b5563;
}

.faq-item li {
	margin-bottom: 4px;
}

.support-options {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px;
	margin-top: 20px;
}

.support-option {
	background: #f8f9fa;
	padding: 20px;
	border-radius: 8px;
	border: 1px solid #e5e7eb;
	text-align: center;
}

.support-option h3 {
	margin: 0 0 10px 0;
	color: #1f2937;
	font-size: 16px;
}

.support-option p {
	margin: 0;
	color: #6b7280;
}

.support-option a {
	color: #4f46e5;
	text-decoration: none;
	font-weight: 500;
}

.support-option a:hover {
	text-decoration: underline;
}

@media (max-width: 768px) {
	.synoveo-faq-header {
		flex-direction: column;
		text-align: center;
	}
	
	.header-branding {
		flex-direction: column;
		gap: 15px;
	}
	
	.partnership-badge {
		flex-direction: column;
		gap: 8px;
	}
	
	.advantage-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.synoveo-step {
		flex-direction: column;
		text-align: center;
	}
	
	.support-options {
		grid-template-columns: 1fr;
	}
}

/* PIN Error Explanation Styling */
.pin-error-explanation {
	background: #fef3c7;
	border: 1px solid #f59e0b;
	border-radius: 8px;
	padding: 20px;
	margin-top: 12px;
}

.error-details h4 {
	color: #92400e;
	margin: 16px 0 8px 0;
	font-size: 1rem;
}

.resolution-steps {
	background: #f0fdf4;
	border: 1px solid #16a34a;
	border-radius: 6px;
	padding: 16px;
	margin: 12px 0;
}

.resolution-steps li {
	margin-bottom: 12px;
	line-height: 1.5;
}

.resolution-steps ul {
	margin-top: 8px;
	margin-left: 20px;
}

.helpful-links {
	background: #eff6ff;
	border: 1px solid #3b82f6;
	border-radius: 6px;
	padding: 16px;
	margin: 16px 0;
}

.helpful-links h4 {
	color: #1d4ed8;
	margin-top: 0;
}

.helpful-links a {
	color: #2563eb;
	text-decoration: none;
	font-weight: 500;
}

.helpful-links a:hover {
	text-decoration: underline;
}

.important-notes {
	background: #fef2f2;
	border: 1px solid #ef4444;
	border-radius: 6px;
	padding: 16px;
	margin: 16px 0;
}

.important-notes h4 {
	color: #dc2626;
	margin-top: 0;
}
