/* Commercial Insurance Management Page Styles */

/* Fix appendix menu (Table of Contents) to use left-aligned content card style */
.feature-card.toc-menu {
	text-align: left !important;
}

.feature-card.toc-menu h3 {
	text-align: left;
	margin-bottom: 25px;
}

.feature-card.toc-menu .material-icons {
	vertical-align: middle;
	font-size: 1.5rem;
	margin-right: 8px;
}

/* Fix button styling to match site's pill shape */
.btn-light.btn-lg {
	border-radius: 30px !important;
	padding: 12px 30px !important;
	font-weight: 500 !important;
	border: 2px solid white !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	text-decoration: none !important;
}

.btn-outline-light.btn-lg {
	border-radius: 30px !important;
	padding: 12px 30px !important;
	font-weight: 500 !important;
	border: 2px solid white !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	text-decoration: none !important;
}

/* Override content cards to use site's feature-card pattern with content-specific enhancements */
.content-card {
	padding: 40px 30px;
	border-radius: 15px;
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
	height: 100%;
	background-color: white;
	text-align: left;
	/* Override center alignment for content */
}

.content-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.content-card .card-icon {
	color: var(--primary);
	font-size: 1.5rem;
	margin-right: 10px;
	vertical-align: middle;
}

/* Stats cards using feature-card base with custom number styling */
.stats-card {
	padding: 40px 30px;
	border-radius: 15px;
	text-align: center;
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
	height: 100%;
	background-color: white;
	border-top: 5px solid var(--primary);
}

.stats-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.stats-number {
	color: var(--primary);
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 15px;
	display: block;
}

.stats-card .card-icon {
	color: var(--primary);
	font-size: 3rem;
	margin-bottom: 20px;
}

/* Process steps using portal-card pattern */
.process-step {
	padding: 30px;
	border-radius: 15px;
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
	height: 100%;
	background-color: white;
	border-top: 5px solid var(--primary);
	text-align: center;
}

.process-step:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.process-icon {
	background-color: rgba(233, 127, 37, 0.1);
	color: var(--primary);
	width: 70px;
	height: 70px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
}

.process-icon .material-icons {
	font-size: 2rem;
}

.process-number {
	background-color: var(--primary);
	color: white;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	font-size: 0.9rem;
}

/* Table styling to match site's clean look */
.comparison-table {
	background: white;
	border-radius: 15px;
	overflow: hidden;
	/* box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05); */
}

.comparison-table thead th {
	background-color: var(--primary);
	color: white;
	padding: 20px;
	border: none;
	font-weight: 600;
}

.comparison-table tbody td {
	padding: 15px 20px;
	border-bottom: 1px solid #f0f0f0;
}

.comparison-table .improvement {
	color: var(--success);
	font-weight: 600;
}

/* Insight callouts using feature-card pattern with better styling */
.insight-callout {
	padding: 40px 30px;
	border-radius: 15px;
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
	background-color: white;
	border-top: 5px solid var(--primary);
	text-align: center;
	transition: all 0.3s ease;
	height: 100%;
}

.insight-callout:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.insight-callout .material-icons {
	color: var(--primary);
	margin-bottom: 20px;
}

.warning-callout {
	background: #fef3cd;
	border-left: 4px solid #ffc107;
	padding: 20px;
	border-radius: 8px;
	margin: 20px 0;
}

.success-callout {
	background: #d1e7dd;
	border-left: 4px solid var(--success);
	padding: 20px;
	border-radius: 8px;
	margin: 20px 0;
}

/* Benefits list styling - fix layout issues */
.benefits-list {
	list-style: none;
	padding: 0;
}

.benefits-list li {
	padding: 20px 0;
	display: block;
	border-bottom: 1px solid #f0f0f0;
}

.benefits-list li:last-child {
	border-bottom: none;
}

.benefits-list li h5 {
	display: flex;
	align-items: center;
	margin-bottom: 10px;
	color: var(--dark);
}

.benefits-list li h5 .card-icon {
	font-size: 1.5rem;
	margin-right: 10px;
	color: var(--primary);
}

.benefits-list li p {
	margin-left: 35px;
	color: #6c757d;
	margin-bottom: 0;
}

/* Fix feature cards in Modern Technology Solutions to have proper icon sizes */
.feature-card .feature-icon {
	color: var(--primary);
	font-size: 3rem !important;
	margin-bottom: 20px;
}

.feature-card .feature-icon .material-icons {
	font-size: 3rem !important;
}

/* Cost breakdown specific styling */
.cost-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 0;
	border-bottom: 1px solid #f0f0f0;
}

.cost-item:last-child {
	border-bottom: none;
}

.cost-amount {
	font-weight: 600;
	color: var(--primary);
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.stats-number {
		font-size: 2rem;
	}

	.content-card,
	.process-step {
		margin-bottom: 20px;
	}

	.comparison-table thead th,
	.comparison-table tbody td {
		padding: 10px;
		font-size: 0.9rem;
	}
}