.insurance-page {
	max-width: 1400px;
	margin: 10px auto 32px;
}

.insurance-eligibility {
	max-width: 1050px;
	margin-right: auto;
	margin-left: auto;
}

.insurance-eligibility .accordion-item {
	overflow: hidden;
	border: 1px solid #dfe3e8;
	border-radius: 14px;
}

.insurance-eligibility .accordion-button {
	padding: 16px 20px;
	font-size: 1rem;
	font-weight: 700;
	color: #1f2937;
}

.insurance-eligibility .accordion-button:not(.collapsed) {
	background-color: #eff6ff;
	color: #0d6efd;
	box-shadow: inset 0 -1px 0 #dbeafe;
}

.insurance-eligibility .accordion-button:focus {
	box-shadow: 0 0 0 .2rem rgba(13, 110, 253, .15);
}

.insurance-eligibility .accordion-body {
	padding: 20px;
	color: #334155;
	font-size: .92rem;
	line-height: 1.5;
}

.eligibility-section + .eligibility-section {
	padding-top: 16px;
	margin-top: 16px;
	border-top: 1px solid #e5e7eb;
}

.eligibility-section h3 {
	margin-bottom: 8px;
	font-size: 1rem;
	font-weight: 700;
	color: #1f2937;
}

.eligibility-section p {
	margin-bottom: 6px;
}

.eligibility-section ol {
	margin-bottom: 0;
	padding-left: 22px;
}

.eligibility-section li + li {
	margin-top: 5px;
}

.eligibility-exclusions h3 {
	color: #842029;
}

.choice-card {
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
	min-height: 485px;
	padding: 22px 18px 18px;
	background: #fff;
	border: 1px solid #dfe3e8;
	border-radius: 16px;
	cursor: pointer;
	transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.choice-card.selected {
	border-color: #0d6efd;
	box-shadow: 0 10px 30px rgba(13, 110, 253, .16);
}

.choice-radio {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.choice-content {
	display: flex;
	flex-direction: column;
	flex: 1;
	text-align: center;
}

.choice-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 68px;
	min-height: 68px;
	font-size: 54px;
	color: #0d6efd;
}

.choice-icon img {
	border-radius: 14px;
	object-fit: cover;
}

.choice-icon-muted {
	color: #9ca3af;
}

.choice-card .choice-title {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 56px;
	margin: 6px 0 8px;
	font-size: 1.2rem;
	font-weight: 700;
	line-height: 1.3;
	color: #1f2937;
}

.choice-card .choice-description {
	min-height: 80px;
	margin: 0;
	color: #6b7280;
	font-size: .85rem;
	line-height: 1.5;
}

.choice-benefits {
	display: flex;
	flex-direction: column;
	gap: 8px;
	min-height: 116px;
	margin: 6px 0 10px;
	padding: 0;
	list-style: none;
	text-align: left;
}

.choice-benefits li {
	position: relative;
	padding: 8px 10px 8px 34px;
	color: #334155;
	font-size: .88rem;
	line-height: 0.5;
}

.choice-benefits li::before {
	content: "\2713";
	position: absolute;
	top: 8px;
	left: 11px;
	color: #0d6efd;
	font-weight: 700;
}

.choice-price-link {
	display: inline-flex;
	align-items: center;
	align-self: center;
	justify-content: center;
	min-height: 36px;
	margin-bottom: 9px;
	padding: 6px 12px;
	border: 1px solid #bfdbfe;
	border-radius: 999px;
	background-color: #eff6ff;
	color: #0d6efd;
	font-size: .86rem;
	font-weight: 600;
	line-height: 1.25;
	text-decoration: none;
	transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}

.choice-price-link::after {
	content: "\203A";
	margin-left: 7px;
	font-size: 1.15rem;
	line-height: 1;
}

.choice-price-link:hover {
	border-color: #0d6efd;
	background-color: #dbeafe;
	color: #0a58ca;
}

.choice-price-label {
	margin-bottom: 2px;
	color: #64748b;
	font-size: .8rem;
	font-weight: 600;
	letter-spacing: .04em;
	text-transform: uppercase;
}

.choice-card .choice-price {
	margin: 0;
	color: #1f2937;
	font-size: 1.35rem;
	font-weight: 750;
	line-height: 1.35;
}

.choice-button {
	width: 100%;
	margin-top: 17px;
	padding-top: 10px;
	padding-bottom: 10px;
	border-radius: 10px;
	font-weight: 600;
}

.choice-button:disabled {
	opacity: .45;
}

.summary-error-message {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 16px;
	margin-bottom: 20px;
	border: 1px solid #f5c2c7;
	border-radius: 10px;
	background-color: #f8d7da;
	color: #842029;
}

.summary-error-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background-color: #dc3545;
	color: #fff;
}

.summary-error-text {
	font-weight: 500;
}

.choice-card.disabled-option {
	opacity: 0.45;
	cursor: not-allowed;
}

.choice-card.disabled-option:hover {
	transform: none;
}

@media (max-width: 767.98px) {
	.insurance-page {
		margin-top: 0;
	}

	.choice-card {
		min-height: 0;
	}

	.choice-card .choice-title,
	.choice-card .choice-description,
	.choice-benefits {
		min-height: 0;
	}

	.choice-card .choice-description {
		margin-bottom: 12px;
	}
}
