/* Solutions Tables Section */
.solutions-tables-section {
	position: relative;
	width: 100%;
	background-color: #ffffff;
	padding: 100px 0;
}

.solutions-table-wrapper {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}

.solutions-table {
	width: 100%;
	border-collapse: collapse;
	background-color: #ffffff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.solutions-table thead {
	background-color: #F8FAFC;
}

.solutions-table thead th {
	padding: 20px 24px;
	text-align: center;
	font-size: 18px;
	font-weight: 600;
	color: var(--main-color);
	border-bottom: 1px solid #E5E7EB;
}

.solutions-table thead th:first-child {
	width: 40%;
}

.solutions-table .pricing-row {
	background-color: #F8FAFC;
}

.solutions-table .pricing-row td {
	padding: 12px 24px;
	text-align: center;
	font-size: 16px;
	font-weight: 600;
	color: var(--sec-color);
	border-bottom: 1px solid #E5E7EB;
}

.solutions-table .price-cell {
	padding: 12px 24px;
	text-align: center;
	font-size: 16px;
	font-weight: 600;
	color: var(--sec-color);
	border-bottom: 1px solid #E5E7EB;
}

.solutions-table tbody tr {
	border-bottom: 1px solid #E5E7EB;
	transition: background-color 0.2s ease;
}

.solutions-table tbody tr:hover {
	background-color: #F9FAFB;
}

.solutions-table .section-header {
	background-color: #F8FAFC;
	cursor: pointer;
	user-select: none;
}

.solutions-table .section-header:hover {
	background-color: #F1F5F9;
}

.solutions-table .section-header-content {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 16px 24px;
}

.solutions-table .section-chevron {
	width: 16px;
	height: 16px;
	color: var(--main-color);
	transition: transform 0.3s ease;
	flex-shrink: 0;
}

.solutions-table .section-header.active .section-chevron {
	transform: rotate(180deg);
}

.solutions-table .section-title {
	font-size: 18px;
	font-weight: 600;
	color: var(--main-color);
}

.solutions-table .section-content {
	display: table-row;
	opacity: 1;
	transition: opacity 0.3s ease;
}

.solutions-table .section-content:not(.active) {
	display: none;
	opacity: 0;
}

.solutions-table .section-content td {
	padding: 16px 24px;
	font-size: 15px;
	color: #374151;
	vertical-align: middle;
}

.solutions-table .section-content td:first-child {
	font-weight: 500;
	color: #1F2937;
}

.solutions-table .section-content td:not(:first-child) {
	text-align: center;
	min-width: 120px;
}

.solutions-table .check-icon {
	width: 20px;
	height: 20px;
	margin: 0 auto;
	display: inline-block;
}

.solutions-table .section-content td[colspan] {
	text-align: left;
}

.solutions-tables-section .table-footnote {
	margin-top: 24px;
	font-size: 14px;
	color: #6B7280;
}

.highline-txt {
    color: var(--sec-color);
}



