/* Porsche Bold Style - Auto-themed */
:root {
    --edkj-primary: #0a122c;
    --edkj-accent: #0ab4d5;
    --edkj-gold: #0ab7da;
    --edkj-gold-light: #eb5b58;
    --edkj-gold-dark: #af3533;
    --edkj-natural: #90b48f;
    --edkj-natural-light: #bae1c9;
    --edkj-natural-dark: #5f905d;
    --edkj-earth: #8a7858;
    --edkj-earth-light: #ccb08b;
    --edkj-bg: #FFFFFF;
    --edkj-bg-light: #FFF0F2;
    --edkj-bg-dark: #f5f3f0;
    --edkj-text: #121d38;
    --edkj-text-light: #455e61;
    --edkj-border: #f5c9d1;
    --edkj-shadow: 0 4px 12px rgba(0,0,0,0.1);
    --edkj-shadow-hover: rgba(42,85,21,0.15);
    --edkj-success: #4e785a;
    --edkj-danger: #844519;
    --edkj-overlay: rgba(250, 249, 246, 0.95);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Source Sans Pro', 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.8;
    color: var(--edkj-text);
    background: var(--edkj-bg);
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(138,188,139,0.01) 2px, rgba(137,194,147,0.01) 4px),
        radial-gradient(circle at 15% 30%, rgba(132,111,82,0.04) 0%, transparent 60%),
        radial-gradient(circle at 85% 70%, rgba(135,193,148,0.03) 0%, transparent 60%),
        radial-gradient(circle at 50% 50%, rgba(114,137,29,0.02) 0%, transparent 70%),
        linear-gradient(180deg, #faf9f6 0%, #ffffff 50%, #faf9f6 100%);
    background-attachment: fixed;
    font-size: 17px;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(149,189,145,0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(144,121,80,0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    animation: edkj-bg-shift 20s ease-in-out infinite;
}

@keyframes edkj-bg-shift {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

body > * {
    position: relative;
    z-index: 1;
}

/* Skip to Content Link (Accessibility) */
.edkj-skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    z-index: 10001;
    padding: 12px 21px;
    background: var(--edkj-primary);
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 0 0 10px 0;
    transition: top 0.3s ease;
    font-family: 'Source Sans Pro', sans-serif;
}

.edkj-skip-link:focus {
    top: 0;
    outline: 2px solid var(--edkj-natural);
    outline-offset: 3px;
}

/* Screen Reader Only */
.edkj-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -2px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Back to Top Button */
.edkj-back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--edkj-natural) 0%, var(--edkj-accent) 100%);
    color: #ffffff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 4px 16px rgba(111,138,38,0.3),
        0 2px 8px rgba(110,144,27,0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 9999;
    font-family: 'Source Sans Pro', sans-serif;
}

.edkj-back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.edkj-back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 6px 20px rgba(109,137,35,0.4),
        0 3px 10px rgba(108,143,28,0.3);
    background: linear-gradient(135deg, var(--edkj-accent) 0%, var(--edkj-natural) 100%);
}

.edkj-back-to-top:focus {
    outline: 2px solid var(--edkj-natural);
    outline-offset: 4px;
}

/* Breadcrumbs */
.edkj-breadcrumbs {
    background: var(--edkj-bg-dark);
    padding: 16px 0;
    border-bottom: 1px solid var(--edkj-border);
    position: sticky;
    top: 80px;
    z-index: 999;
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(11px);
}

.edkj-breadcrumbs-list {
    display: flex;
    align-items: center;
    gap: 9px;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

.edkj-breadcrumbs-item {
    display: flex;
    align-items: center;
}

.edkj-breadcrumbs-item a {
    color: var(--edkj-text-light);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    padding: 5px 8px;
    border-radius: 3px;
}

.edkj-breadcrumbs-item a:hover {
    color: var(--edkj-accent);
    background: rgba(143,195,144,0.1);
}

.edkj-breadcrumbs-item--current span {
    color: var(--edkj-primary);
    font-weight: 600;
    font-size: 14px;
}

.edkj-breadcrumbs-separator {
    color: var(--edkj-text-light);
    font-size: 14px;
    margin: 0 5px;
}

/* Table of Contents */
.edkj-toc {
    background: linear-gradient(135deg, var(--edkj-bg-light) 0%, rgba(250, 249, 246, 0.8) 100%);
    border: 2px solid var(--edkj-border);
    border-radius: 10px;
    padding: 27px;
    margin-bottom: 40px;
    box-shadow: 
        0 3px 18px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    position: sticky;
    top: 120px;
    max-height: calc(100vh - 140px);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--edkj-natural) var(--edkj-bg-dark);
}

.edkj-toc::-webkit-scrollbar {
    width: 6px;
}

.edkj-toc::-webkit-scrollbar-track {
    background: var(--edkj-bg-dark);
    border-radius: 4px;
}

.edkj-toc::-webkit-scrollbar-thumb {
    background: var(--edkj-natural);
    border-radius: 3px;
}

.edkj-toc::-webkit-scrollbar-thumb:hover {
    background: var(--edkj-accent);
}

.edkj-toc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 13px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--edkj-border);
}

.edkj-toc-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--edkj-primary);
    margin: 0;
    font-family: 'Source Sans Pro', sans-serif;
}

.edkj-toc-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--edkj-text);
    padding: 5px;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.edkj-toc-toggle:hover {
    background: rgba(139,186,142,0.1);
    color: var(--edkj-accent);
}

.edkj-toc-toggle:focus {
    outline: 3px solid var(--edkj-natural);
    outline-offset: 2px;
}

.edkj-toc-nav {
    display: block;
}

.edkj-toc.collapsed .edkj-toc-nav {
    display: none;
}

.edkj-toc.collapsed .edkj-toc-toggle svg {
    transform: rotate(180deg);
}

.edkj-toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.edkj-toc-list li {
    margin: 0;
    padding: 0;
}

.edkj-toc-link {
    display: block;
    color: var(--edkj-text);
    text-decoration: none;
    font-size: 15px;
    padding: 7px 15px;
    border-radius: 7px;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 26px;
    line-height: 1.5;
}

.edkj-toc-link::before {
    content: '▸';
    position: absolute;
    left: 12px;
    color: var(--edkj-natural);
    font-size: 12px;
    transition: all 0.3s ease;
}

.edkj-toc-link:hover {
    background: rgba(138,195,147,0.1);
    color: var(--edkj-accent);
    padding-left: 29px;
}

.edkj-toc-link:hover::before {
    color: var(--edkj-accent);
    transform: translateX(4px);
}

.edkj-toc-link:focus {
    outline: 1px solid var(--edkj-natural);
    outline-offset: 3px;
}

.edkj-toc-link.active {
    background: rgba(137,185,140,0.15);
    color: var(--edkj-accent);
    font-weight: 600;
    border-left: 3px solid var(--edkj-natural);
    padding-left: 23px;
}

.edkj-toc-link.active::before {
    color: var(--edkj-accent);
    transform: translateX(4px);
}

/* Performance Optimizations */
.edkj-article-image,
.edkj-logo-icon,
.edkj-testimonial-avatar {
    will-change: transform;
    contain: layout style paint;
}

/* Print Styles */
@media print {
    .edkj-header,
    .edkj-ticker,
    .edkj-breadcrumbs,
    .edkj-toc,
    .edkj-back-to-top,
    .edkj-footer,
    .edkj-testimonial-nav,
    .edkj-testimonial-dots {
        display: none;
    }
    
    .edkj-main {
        padding: 0;
    }
    
    .edkj-article {
        box-shadow: none;
        border: none;
        padding: 0;
    }
    
    a[href^="#"]::after {
        content: " (page " attr(href) ")";
    }
}

.edkj-container {
    max-width:100%;
    margin: 0 auto;
    padding: 0 28px;
}

/* Scroll Progress */
.edkj-scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        var(--edkj-natural) 0%, 
        var(--edkj-accent) 25%, 
        var(--edkj-natural) 50%,
        var(--edkj-accent) 75%,
        var(--edkj-natural) 100%);
    background-size: 200% 100%;
    z-index: 10000;
    transition: width 0.1s;
    box-shadow: 0 0 12px rgba(100,145,40,0.4), 0 2px 4px rgba(99,134,29,0.2);
    animation: edkj-progress-shimmer 3s linear infinite;
}

@keyframes edkj-progress-shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Price Ticker */
.edkj-ticker {
    background: linear-gradient(135deg, #ffffff 0%, #faf9f6 50%, #ffffff 100%);
    color: var(--edkj-text);
    padding: 19px 0;
    border-bottom: 1px solid var(--edkj-border);
    overflow: hidden;
    position: relative;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.edkj-ticker::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--edkj-natural) 20%, 
        var(--edkj-accent) 50%, 
        var(--edkj-natural) 80%, 
        transparent);
    animation: edkj-ticker-line 4s ease-in-out infinite;
}

@keyframes edkj-ticker-line {
    0%, 100% { opacity: 0.3; transform: translateX(-100%); }
    50% { opacity: 0.6; transform: translateX(100%); }
}

.edkj-ticker-track {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 41px;
    flex-wrap: wrap;
    padding: 0 31px;
}

.edkj-ticker-item {
    display: flex;
    align-items: center;
    gap: 13px;
    font-size: 13px;
    padding: 11px 16px;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
}

.edkj-ticker-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 10px;
    background: rgba(148,185,146,0.05);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.edkj-ticker-item:hover::before {
    opacity: 1;
}

.edkj-ticker-metal {
    font-weight: 600;
    color: var(--edkj-primary);
    font-family: 'Source Sans Pro', sans-serif;
}

.edkj-ticker-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--edkj-gold);
    font-family: 'Source Sans Pro', sans-serif;
}

.edkj-ticker-change {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    font-weight: 600;
}

.edkj-ticker-change--up {
    color: var(--edkj-success);
}

.edkj-ticker-change--down {
    color: var(--edkj-danger);
}

.edkj-ticker-separator {
    width: 1px;
    height: 24px;
    background: var(--edkj-border);
}

.edkj-ticker-update {
    text-align: center;
    margin-top: 10px;
    font-size: 9px;
    color: var(--edkj-text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.edkj-ticker-live {
    width: 7px;
    height: 8px;
    background: var(--edkj-success);
    border-radius: 50%;
    display: inline-block;
    animation: edkj-pulse 2s infinite;
}

@keyframes edkj-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

/* Header */
.edkj-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(13px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
    border-bottom: 2px solid var(--edkj-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04), 0 1px 0 rgba(255, 255, 255, 0.8) inset;
    transition: all 0.3s ease;
}

.edkj-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--edkj-natural) 20%, 
        var(--edkj-accent) 50%, 
        var(--edkj-natural) 80%, 
        transparent);
    opacity: 0.3;
}

.edkj-header-container {
    max-width:100%;
    margin: 0 auto;
    padding: 23px 29px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.edkj-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--edkj-primary);
    font-weight: 700;
    font-size: 22px;
    transition: all 0.3s;
    font-family: 'Source Sans Pro', sans-serif;
}

.edkj-logo:hover {
    color: var(--edkj-accent);
}

.edkj-logo-icon {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--edkj-natural) 0%, var(--edkj-accent) 50%, var(--edkj-natural) 100%);
    background-size: 200% 200%;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--edkj-bg-light);
    box-shadow: 
        0 2px 8px rgba(108,146,36,0.25),
        0 0 0 1px rgba(107,136,41,0.1) inset,
        0 1px 2px rgba(255, 255, 255, 0.3) inset;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.edkj-logo-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: rotate(45deg);
    transition: all 0.5s ease;
}

.edkj-logo:hover .edkj-logo-icon::before {
    animation: edkj-logo-shine 1.5s ease-in-out;
}

.edkj-logo:hover .edkj-logo-icon {
    transform: scale(1.05);
    box-shadow: 
        0 4px 12px rgba(104,141,34,0.35),
        0 0 0 1px rgba(103,147,39,0.15) inset,
        0 1px 2px rgba(255, 255, 255, 0.4) inset;
}

@keyframes edkj-logo-shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.edkj-logo-text {
    font-weight: 600;
    font-family: 'Source Sans Pro', sans-serif;
    letter-spacing: 0.2px;
}

.edkj-nav {
    display: flex;
    gap: 39px;
    align-items: center;
}

.edkj-nav-link {
    color: var(--edkj-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s;
    position: relative;
    padding: 5px 0;
    font-family: 'Source Sans Pro', sans-serif;
}

.edkj-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--edkj-natural), var(--edkj-accent), var(--edkj-natural));
    border-radius: 1px 3px 0 0;
    transition: width 0.3s ease;
    box-shadow: 0 -2px 6px rgba(101,142,40,0.3);
}

.edkj-nav-link::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: var(--edkj-natural);
    opacity: 0.3;
    transition: width 0.3s ease 0.1s;
}

.edkj-nav-link:hover {
    color: var(--edkj-accent);
}

.edkj-nav-link:hover::after {
    width: 100%;
}

.edkj-nav-link:hover::before {
    width: 80%;
}

.edkj-nav-link--active {
    color: var(--edkj-accent);
}

.edkj-nav-link--active::after {
    width: 100%;
}

.edkj-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: 3px solid var(--edkj-border);
    border-radius: 5px;
    cursor: pointer;
    padding: 13px 9px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1001;
}

.edkj-menu-toggle:hover {
    border-color: var(--edkj-natural);
    background: rgba(136,194,140,0.05);
}

.edkj-menu-toggle:focus {
    outline: 2px solid var(--edkj-natural);
    outline-offset: 3px;
}

.edkj-menu-line {
    width: 24px;
    height: 3px;
    background: var(--edkj-text);
    transition: all 0.3s ease;
    border-radius: 3px;
    display: block;
}

.edkj-menu-toggle:hover .edkj-menu-line {
    background: var(--edkj-accent);
}

.edkj-menu-toggle.active .edkj-menu-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.edkj-menu-toggle.active .edkj-menu-line:nth-child(2) {
    opacity: 0;
}

.edkj-menu-toggle.active .edkj-menu-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.edkj-mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--edkj-bg-light);
    border-bottom: 1px solid var(--edkj-border);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 22px 27px;
    flex-direction: column;
    gap: 19px;
}

.edkj-mobile-nav.active {
    display: flex;
}

.edkj-mobile-link {
    color: var(--edkj-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    padding: 10px 0;
    border-bottom: 2px solid var(--edkj-border);
    transition: color 0.3s;
    font-family: 'Source Sans Pro', sans-serif;
}

.edkj-mobile-link:hover {
    color: var(--edkj-accent);
}

/* Hero Section */
.edkj-hero {
    background: linear-gradient(135deg, #ffffff 0%, #faf9f6 50%, #ffffff 100%);
    padding: 90px 0 67px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--edkj-border);
}

.edkj-hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(150,193,137,0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(38px);
    animation: edkj-hero-glow 4s ease-in-out infinite;
    z-index: 0;
}

@keyframes edkj-hero-glow {
    0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.5; }
    50% { transform: translateX(-50%) scale(1.2); opacity: 0.8; }
}

.edkj-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(149,183,146,0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(112,143,27,0.06) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.edkj-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--edkj-natural) 20%, 
        var(--edkj-accent) 50%, 
        var(--edkj-natural) 80%, 
        transparent);
    opacity: 0.4;
}

.edkj-hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 25px;
}

.edkj-hero-badge {
    display: inline-block;
    padding: 12px 23px;
    background: linear-gradient(135deg, rgba(147,194,143,0.15) 0%, rgba(110,138,28,0.12) 100%);
    border: 2px solid var(--edkj-natural);
    border-radius: 26px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    color: var(--edkj-natural-dark);
    margin-bottom: 24px;
    font-family: 'Source Sans Pro', sans-serif;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 2px 8px rgba(109,144,36,0.15),
        inset 0 1px 2px rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.edkj-hero-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    animation: edkj-badge-shine 3s ease-in-out infinite;
}

.edkj-hero-badge:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 4px 12px rgba(106,149,42,0.25),
        inset 0 1px 2px rgba(255, 255, 255, 0.6);
    border-color: var(--edkj-accent);
}

@keyframes edkj-badge-shine {
    0%, 100% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    50% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.edkj-hero-title {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 23px 0;
    color: var(--edkj-primary);
    position: relative;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
    background: linear-gradient(135deg, var(--edkj-primary) 0%, var(--edkj-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: edkj-title-gradient 5s ease-in-out infinite;
    background-size: 200% 200%;
}

@keyframes edkj-title-gradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.edkj-hero-subtitle {
    font-size: 19px;
    color: var(--edkj-text-light);
    line-height: 1.7;
    margin: 0 0 41px 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.edkj-hero-actions {
    display: flex;
    gap: 13px;
    justify-content: center;
    flex-wrap: wrap;
}

.edkj-btn {
    display: inline-flex;
    align-items: center;
    padding: 16px 31px;
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    border-radius: 7px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: 'Source Sans Pro', sans-serif;
}

.edkj-btn-primary {
    background: linear-gradient(135deg, var(--edkj-natural) 0%, var(--edkj-accent) 50%, var(--edkj-natural) 100%);
    background-size: 200% 200%;
    color: #ffffff;
    box-shadow: 
        0 4px 12px rgba(103,134,31,0.25),
        0 2px 4px rgba(102,143,40,0.15),
        inset 0 1px 2px rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.edkj-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.edkj-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 6px 20px rgba(99,145,29,0.4),
        0 3px 6px rgba(114,134,38,0.2),
        inset 0 1px 2px rgba(255, 255, 255, 0.3);
    background-position: 100% 0;
}

.edkj-btn-primary:hover::before {
    left: 100%;
}

.edkj-btn-secondary {
    background: transparent;
    color: var(--edkj-text);
    border: 2px solid var(--edkj-border);
    position: relative;
    overflow: hidden;
}

.edkj-btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(148,192,143,0.1) 0%, rgba(111,139,27,0.08) 100%);
    transition: width 0.3s ease;
    z-index: -1;
}

.edkj-btn-secondary:hover {
    border-color: var(--edkj-natural);
    color: var(--edkj-accent);
    transform: translateY(-2px);
    box-shadow: 
        0 4px 12px rgba(110,145,36,0.15),
        0 2px 4px rgba(0, 0, 0, 0.08);
}

.edkj-btn-secondary:hover::before {
    width: 100%;
}

/* Rating Section */
.edkj-rating-section {
    background: linear-gradient(135deg, var(--edkj-bg-dark) 0%, rgba(250, 249, 246, 0.9) 100%);
    padding: 37px 0;
    border-top: 3px solid var(--edkj-border);
    border-bottom: 2px solid var(--edkj-border);
    position: relative;
    overflow: hidden;
}

.edkj-rating-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%,
        var(--edkj-natural) 30%,
        var(--edkj-accent) 50%,
        var(--edkj-natural) 70%,
        transparent 100%);
    opacity: 0.5;
    animation: edkj-rating-line 3s ease-in-out infinite;
}

@keyframes edkj-rating-line {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}

.edkj-rating-section::after {
    content: '';
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(143,192,150,0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: edkj-rating-glow 6s ease-in-out infinite;
}

@keyframes edkj-rating-glow {
    0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.3; }
    50% { transform: translateX(-50%) scale(1.2); opacity: 0.6; }
}

.edkj-rating-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    background: linear-gradient(135deg, var(--edkj-bg-light) 0%, rgba(250, 249, 246, 0.8) 100%);
    padding: 17px 42px;
    border-radius: 49px;
    box-shadow: 
        0 5px 17px rgba(0, 0, 0, 0.08),
        0 2px 4px rgba(0, 0, 0, 0.04),
        inset 0 1px 2px rgba(255, 255, 255, 0.8);
    border: 2px solid var(--edkj-border);
    position: relative;
    overflow: hidden;
}

.edkj-rating-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(138,193,140,0.1) 0%, transparent 70%);
    animation: edkj-rating-pulse 4s ease-in-out infinite;
}

@keyframes edkj-rating-pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.edkj-rating-label {
    font-size: 14px;
    color: var(--edkj-text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.edkj-stars {
    display: flex;
    gap: 5px;
}

.edkj-star {
    font-size: 18px;
    color: #d4d8e2;
}

.edkj-star--filled {
    color: var(--edkj-gold);
    text-shadow: 0 0 8px rgba(10,176,214,0.4);
    animation: edkj-star-twinkle 2s ease-in-out infinite;
}

.edkj-star--filled:nth-child(1) { animation-delay: 0s; }
.edkj-star--filled:nth-child(2) { animation-delay: 0.2s; }
.edkj-star--filled:nth-child(3) { animation-delay: 0.4s; }
.edkj-star--filled:nth-child(4) { animation-delay: 0.6s; }
.edkj-star--filled:nth-child(5) { animation-delay: 0.8s; }

@keyframes edkj-star-twinkle {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.edkj-rating-number {
    font-size: 24px;
    font-weight: 700;
    color: var(--edkj-primary);
    font-family: 'Source Sans Pro', sans-serif;
}

.edkj-rating-reviews {
    font-size: 14px;
    color: var(--edkj-text-light);
}

/* Main Content */
.edkj-main {
    padding: 62px 0;
}

.edkj-main-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 43px;
    align-items: start;
}

.edkj-article {
    max-width: 800px;
    margin: 0;
    background: linear-gradient(135deg, var(--edkj-bg-light) 0%, rgba(250, 249, 246, 0.5) 100%);
    padding: 48px 43px;
    border-radius: 16px;
    box-shadow: 
        0 3px 22px rgba(0, 0, 0, 0.06),
        0 2px 8px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        0 0 0 1px rgba(148,183,135,0.05);
    border: 1px solid var(--edkj-border);
    position: relative;
    overflow: hidden;
}

.edkj-article::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        var(--edkj-natural) 0%, 
        var(--edkj-accent) 50%, 
        var(--edkj-natural) 100%);
    border-radius: 13px 18px 0 0;
    opacity: 0.6;
}

.edkj-article::after {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(147,188,144,0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: edkj-article-glow 10s ease-in-out infinite;
}

@keyframes edkj-article-glow {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.3; }
    50% { transform: translate(-20px, 20px) scale(1.1); opacity: 0.5; }
}

.edkj-article::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        var(--edkj-natural) 0%, 
        var(--edkj-accent) 50%, 
        var(--edkj-natural) 100%);
    border-radius: 18px 15px 0 0;
    opacity: 0.6;
}

.edkj-intro {
    margin-bottom: 48px;
    padding: 37px;
    background: linear-gradient(135deg, 
        rgba(146,194,136,0.12) 0%, 
        rgba(109,138,33,0.08) 100%);
    border-radius: 12px;
    border-left: 7px solid var(--edkj-natural);
    position: relative;
    box-shadow: 
        0 4px 16px rgba(108,147,41,0.12),
        0 2px 6px rgba(0, 0, 0, 0.06),
        inset 0 1px 2px rgba(255, 255, 255, 0.6),
        0 0 0 1px rgba(141,195,139,0.1);
    overflow: hidden;
}

.edkj-intro::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(140,184,148,0.15) 0%, transparent 70%);
    border-radius: 0 11px 0 0;
    pointer-events: none;
}

.edkj-intro::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, 
        var(--edkj-natural) 0%, 
        transparent 100%);
    opacity: 0.4;
}

.edkj-intro::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(139,190,140,0.1) 0%, transparent 70%);
    border-radius: 0 13px 0 0;
    pointer-events: none;
}

.edkj-lead {
    font-size: 20px;
    font-weight: 600;
    color: var(--edkj-primary);
    line-height: 1.7;
    margin-bottom: 19px;
    font-family: 'Source Sans Pro', sans-serif;
}

.edkj-article h2 {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 38px;
    font-weight: 700;
    color: var(--edkj-primary);
    margin: 57px 0 30px 0;
    line-height: 1.3;
    position: relative;
    padding-bottom: 19px;
    padding-left: 23px;
    border-left: 6px solid var(--edkj-natural);
    background: linear-gradient(90deg, rgba(138,180,145,0.05) 0%, transparent 100%);
    padding-top: 14px;
    padding-right: 19px;
    border-radius: 0 8px 5px 0;
    margin-left: -22px;
    box-shadow: 0 1px 11px rgba(101,143,29,0.08);
}

.edkj-article h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, 
        var(--edkj-natural) 0%, 
        var(--edkj-accent) 50%, 
        var(--edkj-natural) 100%);
    background-size: 200% 100%;
    border-radius: 3px;
    box-shadow: 0 2px 5px rgba(100,149,38,0.3);
    animation: edkj-h2-underline 3s ease-in-out infinite;
}

@keyframes edkj-h2-underline {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.edkj-article h3 {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--edkj-primary);
    margin: 41px 0 23px 0;
    position: relative;
    padding-left: 25px;
    padding-top: 10px;
    padding-bottom: 15px;
    background: linear-gradient(90deg, rgba(135,185,138,0.08) 0%, transparent 100%);
    border-radius: 0 6px 5px 0;
    margin-left: -26px;
    padding-right: 15px;
    border-left: 5px solid var(--edkj-natural);
    box-shadow: 0 1px 4px rgba(114,144,35,0.06);
}

.edkj-article h3::before {
    content: '▸';
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--edkj-natural);
    font-size: 16px;
    font-weight: 700;
}

.edkj-article h3::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, transparent, var(--edkj-natural), transparent);
    opacity: 0.3;
}

.edkj-article p {
    margin-bottom: 26px;
    line-height: 1.9;
    color: var(--edkj-text);
    position: relative;
    padding-left: 11px;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

.edkj-article p:hover {
    border-left-color: var(--edkj-natural);
    padding-left: 17px;
    background: rgba(149,180,135,0.03);
    border-radius: 0 3px 5px 0;
    margin-left: -12px;
    padding-right: 9px;
}

.edkj-list,
.edkj-list-ordered {
    margin: 26px 0;
    padding-left: 31px;
}

.edkj-list li,
.edkj-list-ordered li {
    margin-bottom: 21px;
    line-height: 1.9;
    color: var(--edkj-text);
    padding-left: 21px;
    padding-right: 10px;
    padding-top: 11px;
    padding-bottom: 8px;
    position: relative;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    background: rgba(148,186,144,0.02);
    border-radius: 0 7px 5px 0;
    margin-left: -23px;
}

.edkj-list li::marker {
    color: var(--edkj-natural);
    font-weight: 700;
    font-size: 1.2em;
}

.edkj-list li::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--edkj-natural) 0%, var(--edkj-accent) 100%);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 0 0 3px rgba(147,195,136,0.1);
}

.edkj-list li::after {
    content: '';
    position: absolute;
    left: -3px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, 
        transparent 0%, 
        var(--edkj-natural) 50%, 
        transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.edkj-list li:hover {
    padding-left: 23px;
    color: var(--edkj-primary);
    background: rgba(146,185,141,0.06);
    border-left-color: var(--edkj-natural);
    transform: translateX(4px);
    box-shadow: 
        0 2px 8px rgba(109,145,41,0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.edkj-list li:hover::before {
    opacity: 1;
    transform: translateY(-50%) scale(1.2);
    box-shadow: 0 0 0 4px rgba(143,186,150,0.2);
}

.edkj-list li:hover::after {
    opacity: 1;
}

.edkj-list-ordered {
    list-style: decimal;
    counter-reset: edkj-counter;
}

.edkj-list-ordered li {
    counter-increment: edkj-counter;
    position: relative;
    padding-left: 37px;
}

.edkj-list-ordered li::marker {
    color: var(--edkj-natural);
    font-weight: 700;
    font-size: 1.1em;
}

.edkj-list-ordered li::before {
    content: counter(edkj-counter);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--edkj-natural) 0%, var(--edkj-accent) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 
        0 2px 6px rgba(106,146,31,0.25),
        inset 0 1px 2px rgba(255, 255, 255, 0.3);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.edkj-list-ordered li:hover::before {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 
        0 4px 10px rgba(104,145,32,0.35),
        inset 0 1px 2px rgba(255, 255, 255, 0.4);
}

.edkj-image-wrapper {
    margin: 51px 0;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.12),
        0 4px 12px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        0 0 0 1px rgba(135,188,143,0.1);
    border: 2px solid var(--edkj-border);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, var(--edkj-bg-dark) 0%, var(--edkj-bg-light) 100%);
}

/* Gradient overlay on hover */
.edkj-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(150,181,135,0.08) 0%, 
        transparent 50%,
        rgba(113,141,36,0.08) 100%);
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* Glow effect on hover */
.edkj-image-wrapper::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, 
        var(--edkj-natural) 0%, 
        var(--edkj-accent) 50%, 
        var(--edkj-natural) 100%);
    border-radius: 18px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
    filter: blur(7px);
}

.edkj-image-wrapper:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 
        0 16px 48px rgba(0, 0, 0, 0.18),
        0 8px 20px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.7),
        0 0 0 1px rgba(145,194,142,0.2);
    border-color: var(--edkj-natural);
}

.edkj-image-wrapper:hover::before {
    opacity: 1;
}

.edkj-image-wrapper:hover::after {
    opacity: 0.3;
}

/* Decorative corner elements */
.edkj-image-wrapper {
    position: relative;
}

.edkj-image-wrapper .edkj-corner-top {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 40px;
    height: 40px;
    border-top: 3px solid var(--edkj-natural);
    border-left: 3px solid var(--edkj-natural);
    border-radius: 9px 0 0 0;
    opacity: 0.3;
    z-index: 2;
    pointer-events: none;
}

.edkj-image-wrapper .edkj-corner-bottom {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    border-bottom: 3px solid var(--edkj-natural);
    border-right: 3px solid var(--edkj-natural);
    border-radius: 0 0 12px 0;
    opacity: 0.3;
    z-index: 2;
    pointer-events: none;
}

.edkj-article-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
    position: relative;
    z-index: 0;
    background: linear-gradient(135deg, var(--edkj-bg-dark) 0%, var(--edkj-bg-light) 100%);
    min-height: 200px;
}

/* Lazy loading placeholder */
.edkj-article-image[loading="lazy"] {
    opacity: 0;
    filter: blur(12px);
    transform: scale(1.05);
}

.edkj-article-image[loading="lazy"].loaded {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
}

/* Loading skeleton - using separate element */
.edkj-image-wrapper .edkj-loading-skeleton {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        90deg,
        var(--edkj-bg-dark) 0%,
        rgba(144,184,150,0.1) 50%,
        var(--edkj-bg-dark) 100%
    );
    background-size: 200% 100%;
    animation: edkj-image-skeleton 1.5s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    border-radius: 15px;
}

.edkj-image-wrapper:has(.edkj-article-image[loading="lazy"]:not(.loaded)) .edkj-loading-skeleton {
    opacity: 1;
}

@keyframes edkj-image-skeleton {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.edkj-image-wrapper:hover .edkj-article-image {
    transform: scale(1.03);
}

/* Image caption enhancement */
.edkj-image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
    color: #ffffff;
    padding: 23px;
    font-size: 15px;
    font-weight: 500;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.edkj-image-wrapper:hover .edkj-image-caption {
    opacity: 1;
}

/* Pros Cons List Component */
.edkj-pros-cons {
    margin: 53px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 31px;
}

.edkj-pros-box,
.edkj-cons-box {
    padding: 32px;
    border-radius: 9px;
    border: 3px solid;
}

.edkj-pros-box {
    background: linear-gradient(135deg, 
        rgba(142,183,147,0.12) 0%, 
        rgba(105,143,32,0.08) 100%);
    border-color: var(--edkj-natural);
    box-shadow: 
        0 4px 16px rgba(104,148,40,0.1),
        inset 0 1px 2px rgba(255, 255, 255, 0.6);
    position: relative;
    overflow: hidden;
}

.edkj-pros-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(138,190,145,0.15) 0%, transparent 70%);
    animation: edkj-pros-glow 4s ease-in-out infinite;
}

.edkj-cons-box {
    background: linear-gradient(135deg, 
        rgba(133,64,14,0.08) 0%, 
        rgba(132,116,88,0.06) 100%);
    border-color: var(--edkj-earth);
    box-shadow: 
        0 4px 16px rgba(131,76,11,0.1),
        inset 0 1px 2px rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
}

@keyframes edkj-pros-glow {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.edkj-pros-title,
.edkj-cons-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 23px;
    font-family: 'Source Sans Pro', sans-serif;
    display: flex;
    align-items: center;
    gap: 11px;
}

.edkj-pros-title {
    color: var(--edkj-natural-dark);
}

.edkj-cons-title {
    color: var(--edkj-earth);
}

.edkj-pros-list,
.edkj-cons-list {
    list-style: none;
    padding: 0;
}

.edkj-pros-list li,
.edkj-cons-list li {
    padding: 10px 0;
    padding-left: 31px;
    position: relative;
    line-height: 1.7;
}

.edkj-pros-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--edkj-natural-dark);
    font-weight: 700;
    font-size: 20px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(149,190,136,0.15);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.edkj-pros-list li:hover::before {
    background: rgba(148,180,141,0.25);
    transform: scale(1.1);
    box-shadow: 0 2px 6px rgba(111,140,41,0.2);
}

.edkj-cons-list li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: var(--edkj-earth);
    font-weight: 700;
    font-size: 20px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(142,76,18,0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.edkj-cons-list li:hover::before {
    background: rgba(141,66,26,0.2);
    transform: scale(1.1);
    box-shadow: 0 2px 6px rgba(140,72,15,0.2);
}

/* Testimonial Slider Component */
.edkj-testimonial-section {
    margin: 72px 0;
    padding: 49px 0;
    background: linear-gradient(135deg, var(--edkj-bg-dark) 0%, rgba(250, 249, 246, 0.9) 100%);
    border-radius: 19px;
    border: 3px solid var(--edkj-border);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.edkj-testimonial-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        var(--edkj-natural) 0%, 
        var(--edkj-accent) 50%, 
        var(--edkj-natural) 100%);
    border-radius: 18px 15px 0 0;
    opacity: 0.6;
}

.edkj-testimonial-section::after {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(140,185,137,0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: edkj-testimonial-float 8s ease-in-out infinite;
}

@keyframes edkj-testimonial-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-20px, 20px) scale(1.1); }
}

.edkj-testimonial-header {
    text-align: center;
    margin-bottom: 47px;
}

.edkj-testimonial-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--edkj-primary);
    margin-bottom: 15px;
    font-family: 'Source Sans Pro', sans-serif;
}

.edkj-testimonial-subtitle {
    font-size: 17px;
    color: var(--edkj-text-light);
}

.edkj-testimonial-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 43px;
}

.edkj-testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 0;
}

.edkj-testimonial-item {
    min-width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}

.edkj-testimonial-card {
    background: linear-gradient(135deg, var(--edkj-bg-light) 0%, rgba(250, 249, 246, 0.8) 100%);
    padding: 39px;
    border-radius: 20px;
    border: 1px solid var(--edkj-border);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        0 4px 12px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.95),
        0 0 0 1px rgba(135,182,143,0.05);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.edkj-testimonial-card::after {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(150,188,136,0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.edkj-testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.12),
        0 6px 16px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 1),
        0 0 0 1px rgba(146,182,150,0.15);
    border-color: var(--edkj-natural);
}

.edkj-testimonial-card:hover::after {
    opacity: 1;
}

.edkj-testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--edkj-natural), var(--edkj-accent));
    border-radius: 14px 0 0 19px;
}

.edkj-testimonial-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--edkj-text);
    margin-bottom: 21px;
    font-style: italic;
    position: relative;
    padding-left: 26px;
}

.edkj-testimonial-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -8px;
    font-size: 48px;
    color: var(--edkj-natural);
    opacity: 0.3;
    font-family: Georgia, serif;
}

.edkj-testimonial-author {
    display: flex;
    align-items: center;
    gap: 17px;
}

.edkj-testimonial-avatar {
    width: 54px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--edkj-natural) 0%, var(--edkj-accent) 50%, var(--edkj-natural) 100%);
    background-size: 200% 200%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 700;
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: 
        0 4px 12px rgba(109,142,34,0.3),
        0 0 0 3px rgba(144,194,147,0.2),
        inset 0 1px 2px rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.edkj-testimonial-avatar::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    transition: all 0.5s ease;
}

.edkj-testimonial-card:hover .edkj-testimonial-avatar {
    transform: scale(1.1);
    box-shadow: 
        0 6px 16px rgba(105,137,29,0.4),
        0 0 0 3px rgba(140,188,145,0.3),
        inset 0 1px 2px rgba(255, 255, 255, 0.4);
}

.edkj-testimonial-card:hover .edkj-testimonial-avatar::before {
    animation: edkj-avatar-shine 1.5s ease-in-out;
}

@keyframes edkj-avatar-shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.edkj-testimonial-info h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--edkj-primary);
    margin-bottom: 5px;
    font-family: 'Source Sans Pro', sans-serif;
}

.edkj-testimonial-info p {
    font-size: 14px;
    color: var(--edkj-text-light);
    margin: 0;
}

.edkj-testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 35px;
}

.edkj-testimonial-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 3px solid var(--edkj-border);
    background: var(--edkj-bg-light);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    color: var(--edkj-text);
}

.edkj-testimonial-btn:hover {
    border-color: var(--edkj-natural);
    background: linear-gradient(135deg, var(--edkj-natural), var(--edkj-accent));
    color: #ffffff;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(102,138,38,0.3);
}

.edkj-testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 9px;
    margin-top: 22px;
}

.edkj-testimonial-dot {
    width: 13px;
    height: 10px;
    border-radius: 50%;
    background: var(--edkj-border);
    cursor: pointer;
    transition: all 0.3s;
}

.edkj-testimonial-dot.active {
    background: var(--edkj-natural);
    width: 24px;
    border-radius: 6px;
}

/* FAQ Accordion Component */
.edkj-faq-section {
    margin: 69px 0;
    padding: 53px 0;
    background: linear-gradient(135deg, var(--edkj-bg-dark) 0%, rgba(250, 249, 246, 0.9) 100%);
    border-radius: 17px;
    border: 1px solid var(--edkj-border);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.edkj-faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        var(--edkj-natural) 0%, 
        var(--edkj-accent) 50%, 
        var(--edkj-natural) 100%);
    border-radius: 15px 19px 0 0;
    opacity: 0.6;
}

.edkj-faq-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(114,149,36,0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: edkj-faq-glow 6s ease-in-out infinite;
}

@keyframes edkj-faq-glow {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.edkj-faq-header {
    text-align: center;
    margin-bottom: 42px;
}

.edkj-faq-title {
    font-size: 38px;
    font-weight: 700;
    color: var(--edkj-primary);
    margin-bottom: 11px;
    font-family: 'Source Sans Pro', sans-serif;
}

.edkj-faq-subtitle {
    font-size: 17px;
    color: var(--edkj-text-light);
}

.edkj-faq-list {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 38px;
}

.edkj-faq-item {
    background: linear-gradient(135deg, var(--edkj-bg-light) 0%, rgba(250, 249, 246, 0.8) 100%);
    border: 2px solid var(--edkj-border);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.edkj-faq-item::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 100px;
    background: radial-gradient(circle, rgba(146,189,142,0.05) 0%, transparent 70%);
    border-radius: 0 15px 0 0;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.edkj-faq-item:hover::after {
    opacity: 1;
}

.edkj-faq-item.active {
    border-color: var(--edkj-natural);
    box-shadow: 
        0 6px 24px rgba(109,149,39,0.18),
        0 3px 10px rgba(108,139,31,0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        0 0 0 1px rgba(142,180,140,0.1);
    background: linear-gradient(135deg, 
        var(--edkj-bg-light) 0%, 
        rgba(141,186,145,0.08) 100%);
    transform: translateY(-2px);
}

.edkj-faq-item.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--edkj-natural), var(--edkj-accent));
    border-radius: 10px 0 0 7px;
}

.edkj-faq-question {
    width: 100%;
    padding: 26px 31px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 17px;
    font-weight: 600;
    color: var(--edkj-primary);
    transition: all 0.3s ease;
    font-family: 'Source Sans Pro', sans-serif;
    position: relative;
    gap: 17px;
}

.edkj-faq-question::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: linear-gradient(180deg, 
        var(--edkj-natural) 0%, 
        var(--edkj-accent) 100%);
    transition: width 0.3s ease;
    opacity: 0.1;
}

.edkj-faq-item.active .edkj-faq-question::before {
    width: 4px;
    opacity: 1;
}

.edkj-faq-question:hover {
    color: var(--edkj-accent);
    background: rgba(140,192,137,0.06);
    padding-left: 39px;
}

.edkj-faq-item.active .edkj-faq-question {
    color: var(--edkj-accent);
    background: rgba(139,185,146,0.08);
}

.edkj-faq-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
    color: var(--edkj-natural);
    flex-shrink: 0;
}

.edkj-faq-item.active .edkj-faq-icon {
    transform: rotate(180deg);
}

.edkj-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.edkj-faq-answer-content {
    padding: 0 34px 27px 35px;
    color: var(--edkj-text);
    line-height: 1.9;
    position: relative;
}

.edkj-faq-answer-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 32px;
    right: 32px;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%,
        var(--edkj-natural) 50%,
        transparent 100%);
    opacity: 0.3;
}

/* Section Divider */
.edkj-section-divider {
    margin: 60px 0;
    text-align: center;
    position: relative;
    height: 1px;
    background: var(--edkj-border);
}

.edkj-section-divider::after {
    content: '●';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--edkj-bg-light) 0%, rgba(250, 249, 246, 0.9) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--edkj-natural);
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.08),
        inset 0 1px 2px rgba(255, 255, 255, 0.8);
    border: 2px solid var(--edkj-border);
    text-shadow: 0 0 8px rgba(135,192,144,0.4);
    animation: edkj-divider-pulse 3s ease-in-out infinite;
}

@keyframes edkj-divider-pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.8; }
}

/* Footer */
.edkj-footer {
    background: linear-gradient(135deg, var(--edkj-primary) 0%, #18420a 50%, var(--edkj-primary) 100%);
    background-size: 200% 200%;
    color: rgba(255, 255, 255, 0.85);
    padding: 69px 0 38px;
    margin-top: 90px;
    position: relative;
    overflow: hidden;
    animation: edkj-footer-gradient 8s ease-in-out infinite;
}

.edkj-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--edkj-natural) 20%, 
        var(--edkj-accent) 50%, 
        var(--edkj-natural) 80%, 
        transparent);
    opacity: 0.5;
}

.edkj-footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(149,191,141,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(112,135,42,0.08) 0%, transparent 50%);
    pointer-events: none;
}

@keyframes edkj-footer-gradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.edkj-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 45px;
    margin-bottom: 42px;
    position: relative;
}

.edkj-footer-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.edkj-footer-logo {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 11px;
}

.edkj-footer-tagline {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

.edkj-footer-title {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 11px;
    font-family: 'Source Sans Pro', sans-serif;
}

.edkj-footer-links {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.edkj-footer-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 15px;
}

.edkj-footer-links a:hover {
    color: var(--edkj-natural-light);
}

.edkj-footer-bottom {
    text-align: center;
    padding-top: 37px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* Focus States for Accessibility */
*:focus-visible {
    outline: 4px solid var(--edkj-natural);
    outline-offset: 1px;
    border-radius: 5px;
}

.edkj-btn:focus-visible,
.edkj-nav-link:focus-visible,
.edkj-faq-question:focus-visible {
    outline: 3px solid var(--edkj-natural);
    outline-offset: 1px;
}

/* Improved Keyboard Navigation */
.edkj-nav-link:focus,
.edkj-mobile-link:focus,
.edkj-toc-link:focus {
    background: rgba(143,181,140,0.15);
}

/* Image loading states are now in .edkj-article-image section above */

/* Responsive */
@media (max-width: 1024px) {
    .edkj-main-grid {
        grid-template-columns: 1fr;
        gap: 29px;
    }
    
    .edkj-toc {
        position: relative;
        top: 0;
        max-height: none;
    }
    
    .edkj-toc-toggle {
        display: block;
    }
    
    .edkj-breadcrumbs {
        top: 70px;
    }
}

@media (max-width: 768px) {
    .edkj-nav {
        display: none;
    }
    
    .edkj-menu-toggle {
        display: flex;
    }
    
    .edkj-hero {
        padding: 58px 0 53px;
    }
    
    .edkj-hero-title {
        font-size: 38px;
    }
    
    .edkj-hero-subtitle {
        font-size: 17px;
    }
    
    .edkj-article {
        padding: 37px 23px;
        border-radius: 15px;
    }
    
    .edkj-article h2 {
        font-size: 30px;
    }
    
    .edkj-article h3 {
        font-size: 24px;
    }
    
    .edkj-pros-cons {
        grid-template-columns: 1fr;
        gap: 23px;
    }
    
    .edkj-pros-box,
    .edkj-cons-box {
        padding: 24px;
    }
    
    .edkj-testimonial-slider {
        padding: 0 17px;
    }
    
    .edkj-testimonial-card {
        padding: 32px 23px;
    }
    
    .edkj-faq-list {
        padding: 0 23px;
    }
    
    .edkj-faq-question {
        padding: 19px 18px;
        font-size: 19px;
    }
    
    .edkj-image-wrapper {
        margin: 35px 0;
        border-radius: 9px;
    }
    
    .edkj-intro {
        padding: 26px;
    }
    
    .edkj-rating-box {
        padding: 15px 31px;
        border-radius: 41px;
    }
    
    .edkj-back-to-top {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
    }
    
    .edkj-breadcrumbs {
        padding: 14px 0;
        top: 59px;
    }
    
    .edkj-breadcrumbs-list {
        font-size: 13px;
    }
    
    .edkj-toc {
        padding: 21px;
    }
}


/* ==================
   Company Logo Styles (110px height)
   ================== */
.fb-company-logo {
    width: 240px;
    height: 165px;
    object-fit: contain;
    background: var(--fb-white);
    border-radius: var(--fb-radius-sm);
    padding: 5px;
    margin-bottom: 10px;
    border: 1px solid var(--fb-gray-200);
}

.fb-company-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* ==================
   Action Buttons (Go + Review)
   ================== */
.fb-action-buttons {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.fb-btn-primary {
    display: inline-block;
    padding: 11px 22px;
    background: var(--fb-secondary);
    color: var(--fb-dark);
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    border-radius: var(--fb-radius-sm);
    transition: var(--fb-transition);
    text-decoration: none;
}

.fb-btn-primary:hover {
    background: var(--fb-secondary-dark);
    color: var(--fb-dark);
    transform: translateY(-1px);
}

.fb-btn-review {
    display: inline-block;
    padding: 7px 26px;
    background: transparent;
    color: var(--fb-primary);
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    border: 2px solid var(--fb-primary);
    border-radius: var(--fb-radius-sm);
    transition: var(--fb-transition);
    text-decoration: none;
}

.fb-btn-review:hover {
    background: var(--fb-primary);
    color: var(--fb-white);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .fb-company-logo {
        width: 160px;
        height: 100px;
    }

    .fb-action-buttons {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .fb-btn-primary,
    .fb-btn-review {
        padding: 8px 13px;
        font-size: 15px;
    }
}
/* ==================
   UNIVERSAL MOBILE FIX - Company Logos & Table Adaptivity
   Applied to all sites
   ================== */
@media (max-width: 768px) {
    /* Universal logo selectors */
    [class*='company-logo'],
    [class*='CompanyLogo'],
    [class*='company_logo'],
    img[class*='logo'][class*='company'],
    .company-logo,
    .fb-company-logo,
    .catCompanyLogo,
    .tf-company-card__logo,
    .th-company-logo,
    .op-company-logo,
    .card-logo,
    .review-logo {
        width: 140px !important;
        min-width: 140px !important;
        height: auto !important;
        min-height: 80px !important;
        max-height: 100px !important;
        padding: 8px !important;
        margin: 0 auto 9px !important;
        display: block !important;
        object-fit: contain !important;
    }
    
    /* Center company info/cards */
    [class*='company-info'],
    [class*='CompanyInfo'],
    [class*='company_info'],
    .fb-company-info,
    .catCompanyInfo,
    .tf-company-card__info {
        align-items: center !important;
        text-align: center !important;
    }
    
    /* Center company name */
    [class*='company-name'],
    [class*='CompanyName'],
    .catCompanyName,
    .tf-company-card__name {
        text-align: center !important;
    }
    
    /* Center rating/stars */
    [class*='rating'],
    [class*='Rating'],
    [class*='stars'],
    [class*='Stars'],
    .catRating,
    .catStars {
        justify-content: center !important;
        text-align: center !important;
    }
    
    /* Buttons full width */
    [class*='action-btn'],
    [class*='ActionBtn'],
    [class*='btn-cta'],
    [class*='btn-primary'],
    [class*='btn-review'],
    .catBtnCta,
    .catBtnReview,
    .fb-btn-primary,
    .fb-btn-review,
    .tf-btn-primary,
    .tf-btn-outline {
        display: block !important;
        width: 100% !important;
        padding: 14px 19px !important;
        text-align: center !important;
        font-size: 14px !important;
        margin-bottom: 9px !important;
    }
    
    /* Site logo bigger */
    [class*='site-logo'] img,
    [class*='SiteLogo'] img,
    .catLogo__icon,
    .tf-logo__icon,
    .th-logo__icon,
    header [class*='logo'] img {
        min-width: 45px !important;
        min-height: 45px !important;
    }
}


/* Max width 1400px for desktop */
.edkj-wrapper, .edkj-content, .edkj-hero-inner, .edkj-companies-container, 
.edkj-article, .edkj-container, .edkj-footer-inner, .edkj-main {
    max-width: 1400px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Center buttons in company cards */
.edkj-company-card {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
}
.edkj-td-action {
    text-align: center !important;
}
.edkj-action-buttons {
    display: flex !important;
    justify-content: center !important;
    gap: 12px !important;
}
