/* Key Tag - Premium Frontend Styles */
.kt-premium-table-wrapper {
    margin: 30px 0;
    overflow-x: auto;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
}

.kt-premium-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
}

.kt-premium-table thead tr {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: #ffffff;
}

.kt-premium-table th {
    padding: 16px 24px;
    text-align: left;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 13px;
}

.kt-premium-table td {
    padding: 14px 24px;
    border-bottom: 1px solid #f1f5f9;
    color: #334155;
    vertical-align: middle;
}

.kt-premium-table tr:last-child td {
    border-bottom: none;
}

.kt-premium-table tbody tr:hover {
    background: rgba(241, 245, 249, 0.5);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.kt-premium-table td strong {
    color: #1e293b;
    font-weight: 600;
}

/* FAQ Schema Styling with Premium Aesthetics */
.kt-faq-container {
    margin-top: 40px;
    padding: 30px;
    background: linear-gradient(to bottom right, #f8fafc, #eff6ff);
    border-radius: 20px;
    border: 1px solid #e2e8f0;
}

.kt-faq-header {
    font-size: 22px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.kt-faq-header::before {
    content: '';
    width: 4px;
    height: 24px;
    background: #4f46e5;
    border-radius: 4px;
}

.kt-faq-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e2e8f0;
}

.kt-faq-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.kt-faq-question {
    font-weight: 700;
    color: #1e293b;
    font-size: 18px;
    margin-bottom: 10px;
}

.kt-faq-answer {
    color: #475569;
    line-height: 1.7;
    font-size: 15px;
}
