.fk-heading-font {
	font-family: 'Playfair Display', serif;
}        
.fk-main-container {
	background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
	min-height: 100%;
}        
.fk-content-wrapper {
	display: flex;
	flex-direction: column;
	padding: 20px;
	gap: 30px;
}        
@media (min-width: 1024px) {
	.fk-content-wrapper {
		flex-direction: row;
		padding: 40px;
		gap: 40px;
		padding-top: 80px;
		padding-bottom: 80px;
	}
}        
.fk-left-section {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 25px;
}
.fk-image-container {
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}        
.fk-hero-image {
	width: 100%;
	height: 280px;
	background: linear-gradient(145deg, #d4af37 0%, #b8860b 50%, #8b6914 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}        
.fk-hero-image-img {
	width: 100%;
	height: 100%;
	display: block;
}        
.fk-image-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 20px;
	background: linear-gradient(to top, rgba(15, 23, 42, 0.95), transparent);
}        
.fk-overlay-text {
	color: #d4af37;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
}        
.fk-content-area {
	border-radius: 16px;
	padding: 30px;
	border: 1px solid rgba(212, 175, 55, 0.2);
	box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.4);
}        
.fk-content-title {
	color: #d4af37;
	font-size: 28px;
	line-height: 1.3;
	margin-bottom: 20px;
	font-weight: 600;
	letter-spacing: 1px;
}        
@media (min-width: 768px) {
	.fk-content-title {
		font-size: 32px;
	}
}        
.fk-content-paragraph {
	color: #262627;
	font-size: 16px;
	line-height: 1.8;
	margin-bottom: 18px;
	letter-spacing: 1px;
}        
.fk-highlight-text {
	color: #262627;
	font-weight: 600;
}        
.fk-section-heading {
	color: #d4af37;
	font-size: 22px;
	margin-top: 30px;
	margin-bottom: 15px;
	font-weight: 600;
	position: relative;
	padding-left: 15px;
	letter-spacing: 1px;
}        
.fk-section-heading::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 4px;
	height: 24px;
	background: linear-gradient(180deg, #d4af37, #b8860b);
	border-radius: 2px;
}        
.fk-list-container {
	margin: 15px 0;
	padding-left: 0;
}	        
.fk-list-item {
	color: #262627;
	font-size: 16px;
	line-height: 1.8;
	letter-spacing: 1px;
	margin-bottom: 10px;
	padding-left: 25px;
	position: relative;
}        
.fk-list-item::before {
	content: '•';
	position: absolute;
	left: 8px;
	color: #d4af37;
	font-weight: bold;
}        
.fk-check-list .fk-list-item::before {
	content: '✔';
	font-size: 12px;
	color: #22c55e;
}        
.fk-step-number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	background: linear-gradient(135deg, #d4af37, #b8860b);
	color: #0f172a;
	font-weight: 700;
	font-size: 14px;
	border-radius: 50%;
	margin-right: 10px;
}        
.fk-step-title {
	color: #262627;
	font-size: 17px;
	font-weight: 600;
	margin-top: 20px;
	margin-bottom: 10px;
	display: flex;
	align-items: center;
}        
.fk-right-section {
	width: 100%;
	max-width: 100%;
}        
@media (min-width: 1024px) {
	.fk-right-section {
		width: 320px;
		min-width: 320px;
		max-width: 320px;
	}
}        
.fk-sidebar-card {
	border-radius: 16px;
	padding: 21px;
	border: 1px solid rgba(212, 175, 55, 0.2);
	box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.4);
	position: sticky;
	top: 60px;
}        
.fk-sidebar-title {
	color: #d4af37;
	font-size: 24px;
	margin-bottom: 20px;
	font-weight: 600;
	text-align: center;
	letter-spacing: 1px;
	position: relative;
	padding-bottom: 15px;
}        
.fk-sidebar-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 3px;
	background: linear-gradient(90deg, transparent, #d4af37, transparent);
}        
.fk-practice-list {
	display: flex;
	flex-direction: column;
	gap: 5px;
}        
.fk-practice-link {
	display: block;
	padding: 10px 16px;
	color: #262627;
	text-decoration: none;
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 1px;
	border-radius: 8px;
	transition: all 0.3s ease;
	border: 1px solid transparent;
	position: relative;
	overflow: hidden;
}
.fk-practice-link::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 3px;
	background: #d4af37;
	transform: scaleY(0);
	transition: transform 0.3s ease;
}        
.fk-practice-link:hover {
	color: #262627;
	background: rgba(212, 175, 55, 0.1);
	border-color: rgba(212, 175, 55, 0.3);
	padding-left: 20px;
}        
.fk-practice-link:hover::before {
	transform: scaleY(1);
}        
.fk-practice-link.active {
	color: #d4af37;
	background: linear-gradient(90deg, rgba(212, 175, 55, 0.15), transparent);
	border-color: rgba(212, 175, 55, 0.4);
	font-weight: 600;
	padding-left: 20px;
}        
.fk-practice-link.active::before {
	transform: scaleY(1);
	background: linear-gradient(180deg, #d4af37, #f59e0b);
}        
.fk-divider {
	height: 1px;
	background: linear-gradient(90deg, transparent, rgb(241 188 17 / 58%), transparent);
	margin: 8px 0;
}                
.fk-badge {
	display: inline-block;
	background: linear-gradient(135deg, #d4af37, #b8860b);
	color: #0f172a;
	font-size: 11px;
	font-weight: 700;
	padding: 3px 8px;
	border-radius: 4px;
	margin-left: 8px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}
/* Table Container */
.fk-table-container {
    width: 100%;
    overflow-x: auto;
    margin-bottom: 20px;
    margin-top: 20px;
}

/* Main Table */
.fk-comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    overflow: hidden;
    min-width: 600px;
}

/* Header */
.fk-comparison-table thead {
    background: #26a8cb;
    color: #ffffff;
}

.fk-comparison-table th {
    padding: 18px;
    font-size: 18px;
    text-align: left;
    letter-spacing: 1px;
}
.fk-comparison-table tr {
    font-size: 16px;
    letter-spacing: 1px;
}
/* Body Cells */
.fk-comparison-table td {
    padding: 16px 18px;
    font-size: 15px;
    border-bottom: 1px solid #eeeeee;
}

/* Row Hover */
.fk-comparison-table tbody tr:hover {
    background: #f9f9f9;
    transition: 0.3s ease;
}

/* Responsive */
@media (max-width: 768px) {

    .fk-comparison-table {
        min-width: 100%;
    }

    .fk-section-heading {
        font-size: 22px;
    }

    .fk-comparison-table th,
    .fk-comparison-table td {
        padding: 12px;
        font-size: 14px;
    }
}