:root {
            --primary: #f97316;
            --primary-dark: #ea580c;
            --primary-light: #fff7ed;
            --gold: #b48530; /* Adjusted for the image's gold/brown theme */
            --gold-light: #fdfaf3;
            --gold-border: #f3e8d2;
            --text-dark: #1f2937;
            --text-muted: #6b7280;
            --bg-light: #fdfbf7;
            --border-color: #e5e7eb;
        }

        body {
            font-family: 'Outfit', sans-serif;
            background-color: var(--bg-light);
            color: var(--text-dark);
            margin: 0;
            padding: 0;
        }

        .vm-container {
            width: 90%;
            max-width: 1600px;
            margin: 40px auto 80px;
            position: relative;
            z-index: 10;
        }

        .filters {
            display: flex;
            gap: 12px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }

        .filter-btn {
            background: #fff;
            border: 1px solid var(--border-color);
            padding: 10px 24px;
            border-radius: 30px;
            font-family: 'Outfit', sans-serif;
            font-size: 14px;
            font-weight: 500;
            color: var(--text-dark);
            cursor: pointer;
            transition: all 0.2s;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .filter-btn i {
            color: var(--gold);
        }

        .filter-btn.active {
            background: #1a1a1a;
            color: #fff;
            border-color: #1a1a1a;
        }
        
        .filter-btn.active i {
            color: var(--gold);
        }

        .filter-btn:hover:not(.active) {
            background: #f3f4f6;
        }

        .main-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 24px;
            align-items: start;
        }

        @media (max-width: 992px) {
            .main-grid {
                grid-template-columns: 1fr;
            }
        }

        /* ── CARD STYLES ── */
        .card {
            background: #fff;
            border-radius: 16px;
            padding: 28px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.03);
            border: 1px solid rgba(0,0,0,0.04);
            margin-bottom: 24px;
        }

        .card-header {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 24px;
        }

        .card-icon {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--text-dark);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: var(--gold);
            flex-shrink: 0;
        }
        
        .card-icon.gold {
            background: var(--gold);
            color: #fff;
        }

        .card-title {
            font-size: 22px;
            font-weight: 700;
            margin: 0;
            color: var(--text-dark);
        }

        /* Visi & Misi Layout */
        .vm-top-grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 24px;
            margin-bottom: 24px;
        }

        @media (max-width: 768px) {
            .vm-top-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Visi Text */
        .visi-text {
            font-size: 16px;
            line-height: 1.8;
            color: var(--text-dark);
            font-weight: 500;
        }

        /* Misi List */
        .misi-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .misi-list ol, .misi-list ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 16px;
            counter-reset: misi-counter;
        }

        .misi-list ol li, .misi-list ul li {
            display: flex;
            gap: 16px;
            align-items: flex-start;
            font-size: 14px;
            line-height: 1.6;
            color: var(--text-muted);
            counter-increment: misi-counter;
        }

        .misi-list ol li::before {
            content: counter(misi-counter, decimal-leading-zero);
            width: 32px;
            height: 32px;
            border-radius: 50%;
            border: 1.5px solid var(--gold);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: 600;
            color: var(--gold);
            flex-shrink: 0;
            margin-top: 2px;
        }

        .misi-list ul li::before {
            content: "\f111"; /* FontAwesome solid circle */
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            border: 1.5px solid var(--gold);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 8px;
            color: var(--gold);
            flex-shrink: 0;
            margin-top: 2px;
        }

        .misi-item {
            display: flex;
            gap: 16px;
            align-items: flex-start;
        }

        .misi-number {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            border: 1.5px solid var(--gold);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: 600;
            color: var(--gold);
            flex-shrink: 0;
        }

        .misi-text {
            font-size: 14px;
            line-height: 1.6;
            color: var(--text-muted);
            margin-top: 4px;
        }

        /* Quote Box */
        .quote-box {
            background: var(--gold-light);
            border: 1px solid var(--gold-border);
            border-radius: 12px;
            padding: 24px;
            display: flex;
            align-items: center;
            gap: 24px;
            margin-bottom: 24px;
        }

        @media (max-width: 768px) {
            .quote-box {
                flex-direction: column;
                text-align: center;
            }
        }

        .quote-icon {
            font-size: 32px;
            color: var(--gold);
            flex-shrink: 0;
        }

        .quote-text {
            flex: 1;
            font-size: 16px;
            font-weight: 500;
            color: var(--text-dark);
            line-height: 1.6;
        }

        .quote-author {
            border-left: 2px solid var(--gold);
            padding-left: 20px;
            flex-shrink: 0;
            min-width: 200px;
        }
        
        @media (max-width: 768px) {
            .quote-author {
                border-left: none;
                border-top: 2px solid var(--gold);
                padding-left: 0;
                padding-top: 20px;
            }
        }

        .quote-author-name {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 4px;
        }

        .quote-author-title {
            font-size: 12px;
            color: var(--text-muted);
        }

        /* Bottom 4 Cards Grid */
        .values-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }

        @media (max-width: 992px) {
            .values-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 576px) {
            .values-grid {
                grid-template-columns: 1fr;
            }
        }

        .value-card {
            background: #fff;
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 20px;
            display: flex;
            flex-direction: column;
        }

        .value-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 12px;
        }

        .value-icon {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: var(--text-dark);
            color: var(--gold);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
        }

        .value-title {
            font-size: 15px;
            font-weight: 700;
            color: var(--text-dark);
            margin: 0;
        }

        .value-desc {
            font-size: 12px;
            color: var(--text-muted);
            line-height: 1.6;
            margin: 0;
        }

        /* Sidebar Elements */
        .sidebar-card {
            background: #fff;
            border-radius: 16px;
            padding: 28px;
            margin-bottom: 24px;
            border: 1px solid rgba(0,0,0,0.04);
            box-shadow: 0 4px 20px rgba(0,0,0,0.03);
        }

        .check-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .check-list li {
            display: flex;
            gap: 12px;
            align-items: flex-start;
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.5;
        }

        .check-list li i {
            color: var(--gold);
            font-size: 16px;
            margin-top: 2px;
        }

        /* Fokus Layanan List */
        .service-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .service-item {
            display: flex;
            align-items: center;
            gap: 16px;
            font-size: 14px;
            color: var(--text-muted);
            font-weight: 500;
        }

        .service-icon {
            color: var(--gold);
            font-size: 16px;
            width: 20px;
            text-align: center;
        }

        /* Pill Tags */
        .pill-container {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .pill-tag {
            background: var(--gold-light);
            border: 1px solid var(--gold-border);
            color: var(--gold);
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 500;
        }

        .visi-bg {
            background-image: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M20,80 L20,30 L40,30 L40,80 Z" fill="none" stroke="%23f3e8d2" stroke-width="2"/><path d="M40,80 L40,20 L60,20 L60,80 Z" fill="none" stroke="%23f3e8d2" stroke-width="2"/><path d="M60,80 L60,40 L80,40 L80,80 Z" fill="none" stroke="%23f3e8d2" stroke-width="2"/><path d="M10,80 L90,80" fill="none" stroke="%23f3e8d2" stroke-width="2"/></svg>');
            background-repeat: no-repeat;
            background-position: bottom right;
            background-size: 150px;
        }

        /* ── RESPONSIVE MEDIA QUERIES (MOBILE OVERRIDES) ── */
        @media (max-width: 768px) {
            .vm-container {
                width: 100% !important;
                padding: 0 16px !important;
                margin: 20px auto 40px !important;
                box-sizing: border-box !important;
            }
            .filters {
                flex-wrap: nowrap !important;
                overflow-x: auto !important;
                padding-bottom: 8px !important;
                margin-bottom: 20px !important;
                gap: 8px !important;
                -webkit-overflow-scrolling: touch !important;
            }
            .filter-btn {
                flex-shrink: 0 !important;
                padding: 8px 16px !important;
                font-size: 13px !important;
                border-radius: 20px !important;
            }
            .card, .sidebar-card {
                padding: 20px !important;
                margin-bottom: 16px !important;
                border-radius: 14px !important;
                box-sizing: border-box !important;
            }
            .card-title {
                font-size: 18px !important;
            }
            .card-header {
                margin-bottom: 16px !important;
                gap: 12px !important;
            }
            .card-icon {
                width: 40px !important;
                height: 40px !important;
                font-size: 16px !important;
            }
            .visi-text {
                font-size: 14.5px !important;
                line-height: 1.7 !important;
            }
            .misi-text {
                font-size: 13px !important;
                line-height: 1.5 !important;
            }
            .quote-box {
                flex-direction: column !important;
                text-align: center !important;
                padding: 20px !important;
                gap: 16px !important;
                border-radius: 10px !important;
            }
            .quote-icon {
                font-size: 24px !important;
            }
            .quote-text {
                font-size: 14px !important;
            }
            .quote-author {
                border-left: none !important;
                border-top: 1px solid var(--gold) !important;
                padding-left: 0 !important;
                padding-top: 16px !important;
                min-width: 0 !important;
                width: 100% !important;
            }
            .value-card {
                padding: 16px !important;
                border-radius: 10px !important;
            }
            .value-header {
                margin-bottom: 8px !important;
                gap: 10px !important;
            }
            .value-icon {
                width: 30px !important;
                height: 30px !important;
                font-size: 13px !important;
            }
            .value-title {
                font-size: 14px !important;
            }
            .value-desc {
                font-size: 11.5px !important;
                line-height: 1.5 !important;
            }
            .check-list li, .service-item {
                font-size: 13px !important;
                line-height: 1.4 !important;
            }
            .pill-tag {
                padding: 6px 12px !important;
                font-size: 12px !important;
            }
        }

        @media (max-width: 576px) {
            .card, .sidebar-card {
                padding: 16px !important;
            }
        }

        /* Dynamic content styling */
        .dynamic-page-content ul, .dynamic-page-content ol {
            margin-bottom: 1rem;
            padding-left: 2rem;
        }
        .dynamic-page-content ul {
            list-style-type: disc;
        }
        .dynamic-page-content ol {
            list-style-type: decimal;
        }
        .dynamic-page-content li {
            margin-bottom: 0.5rem;
        }
        .dynamic-page-content p {
            margin-bottom: 1rem;
        }
        .dynamic-page-content h3 {
            font-size: 1.25rem;
            margin-top: 1.5rem;
            margin-bottom: 0.75rem;
            color: var(--text-dark);
            font-weight: 600;
        }

        /* Sidebar Dynamic Cards Styling */
        .check-list-dynamic ul, .service-list-dynamic ul {
            list-style: none !important;
            padding: 0 !important;
            margin: 0 !important;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .check-list-dynamic ul li {
            position: relative;
            padding-left: 24px;
            font-size: 14px;
            line-height: 1.6;
            color: var(--text-dark);
        }

        .check-list-dynamic ul li::before {
            content: "\f058"; /* circle-check */
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            position: absolute;
            left: 0;
            top: 2px;
            color: var(--gold);
            font-size: 15px;
        }

        .service-list-dynamic ul li {
            position: relative;
            padding-left: 28px;
            font-size: 13.5px;
            color: var(--text-dark);
            line-height: 1.5;
        }

        .service-list-dynamic ul li::before {
            content: "\f5da"; /* book-open */
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            position: absolute;
            left: 0;
            top: 2px;
            color: var(--gold);
            font-size: 14px;
        }

        .pill-container-dynamic ul {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            list-style: none !important;
            padding: 0 !important;
            margin: 0 !important;
        }

        .pill-container-dynamic ul li {
            background: var(--gold-light);
            border: 1px solid var(--gold-border);
            color: var(--gold);
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 500;
            transition: all 0.2s;
        }

        .pill-container-dynamic ul li:hover {
            background: var(--gold);
            color: #fff;
        }