.elementor-113 .elementor-element.elementor-element-6e33830{--display:flex;}/* Start custom CSS for html, class: .elementor-element-66120e5 */<style>
        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            line-height: 1.7;
            color: #1e293b;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            padding: 40px 20px;
            min-height: 100vh;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: #ffffff;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            overflow: hidden;
        }

        /* Header */
        .header {
            background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
            color: white;
            padding: 60px 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .header::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            animation: pulse 15s ease-in-out infinite;
        }

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

        .header-content {
            position: relative;
            z-index: 1;
        }

        .header h1 {
            font-size: 2.5em;
            font-weight: 800;
            margin-bottom: 15px;
            text-shadow: 0 2px 20px rgba(0,0,0,0.2);
        }

        .header-subtitle {
            font-size: 1.2em;
            opacity: 0.95;
            margin-bottom: 25px;
        }

        .header-meta {
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
            margin-top: 30px;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.2);
        }

        .meta-item {
            font-size: 0.9em;
            opacity: 0.9;
        }

        .meta-item strong {
            display: block;
            font-size: 1.1em;
            margin-bottom: 5px;
        }

        /* Content */
        .content {
            padding: 60px 40px;
        }

        /* Table of Contents */
        .toc {
            background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
            border-left: 4px solid #2563eb;
            padding: 30px;
            margin-bottom: 50px;
            border-radius: 10px;
        }

        .toc h2 {
            color: #1e40af;
            font-size: 1.4em;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .toc-list {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 12px;
        }

        .toc-list li a {
            color: #1e40af;
            text-decoration: none;
            padding: 10px 15px;
            display: block;
            border-radius: 6px;
            transition: all 0.3s ease;
            font-weight: 500;
        }

        .toc-list li a:hover {
            background: white;
            transform: translateX(5px);
            box-shadow: 0 2px 10px rgba(37, 99, 235, 0.1);
        }

        /* Sections */
        .section {
            margin-bottom: 60px;
            scroll-margin-top: 20px;
        }

        .section-title {
            color: #1e40af;
            font-size: 2em;
            font-weight: 700;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 3px solid #2563eb;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .section-number {
            background: #2563eb;
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3em;
            font-weight: 700;
            flex-shrink: 0;
        }

        .subsection {
            margin: 30px 0;
        }

        .subsection-title {
            color: #1e40af;
            font-size: 1.4em;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .subsection-title-sm {
            color: #2563eb;
            font-size: 1.1em;
            font-weight: 600;
            margin: 20px 0 10px 0;
        }

        /* Text */
        p {
            margin-bottom: 15px;
            color: #334155;
            text-align: justify;
        }

        strong {
            color: #1e293b;
            font-weight: 600;
        }

        /* Lists */
        ul, ol {
            margin: 15px 0 15px 25px;
        }

        li {
            margin-bottom: 10px;
            color: #334155;
        }

        ul li::marker {
            color: #2563eb;
        }

        /* Info Boxes */
        .info-box {
            background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
            border-left: 4px solid #2563eb;
            padding: 25px;
            margin: 25px 0;
            border-radius: 8px;
        }

        .info-box-title {
            color: #1e40af;
            font-weight: 700;
            font-size: 1.1em;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .warning-box {
            background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
            border-left: 4px solid #f59e0b;
            padding: 25px;
            margin: 25px 0;
            border-radius: 8px;
        }

        .warning-box-title {
            color: #92400e;
            font-weight: 700;
            font-size: 1.1em;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .success-box {
            background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
            border-left: 4px solid #10b981;
            padding: 25px;
            margin: 25px 0;
            border-radius: 8px;
        }

        .success-box-title {
            color: #065f46;
            font-weight: 700;
            font-size: 1.1em;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .danger-box {
            background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
            border-left: 4px solid #ef4444;
            padding: 25px;
            margin: 25px 0;
            border-radius: 8px;
        }

        .danger-box-title {
            color: #991b1b;
            font-weight: 700;
            font-size: 1.1em;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        /* Brand Grid */
        .brand-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 20px;
            margin: 25px 0;
        }

        .brand-card {
            background: white;
            border: 2px solid #e5e7eb;
            border-radius: 12px;
            padding: 25px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .brand-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #2563eb, #3b82f6);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .brand-card:hover {
            border-color: #2563eb;
            box-shadow: 0 10px 30px rgba(37, 99, 235, 0.15);
            transform: translateY(-5px);
        }

        .brand-card:hover::before {
            transform: scaleX(1);
        }

        .brand-icon {
            font-size: 2.5em;
            margin-bottom: 15px;
        }

        .brand-title {
            color: #1e40af;
            font-size: 1.2em;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .brand-items {
            color: #64748b;
            font-size: 0.95em;
            line-height: 1.6;
        }

        /* Steps */
        .steps {
            margin: 30px 0;
        }

        .step {
            display: flex;
            gap: 25px;
            margin-bottom: 40px;
            position: relative;
        }

        .step::after {
            content: '';
            position: absolute;
            left: 29px;
            top: 70px;
            bottom: -40px;
            width: 2px;
            background: linear-gradient(180deg, #2563eb 0%, #e5e7eb 100%);
        }

        .step:last-child::after {
            display: none;
        }

        .step-number-circle {
            background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.5em;
            flex-shrink: 0;
            box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
            position: relative;
            z-index: 1;
        }

        .step-content {
            flex: 1;
            padding-top: 5px;
        }

        .step-title {
            color: #1e40af;
            font-size: 1.3em;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .step-desc {
            color: #475569;
            margin-bottom: 15px;
        }

        .step-details {
            background: #f8fafc;
            padding: 20px;
            border-radius: 8px;
            border-left: 3px solid #2563eb;
            margin-top: 15px;
        }

        .step-details strong {
            color: #1e40af;
        }

        /* Example Box */
        .example-box {
            background: #f8fafc;
            border: 2px dashed #cbd5e1;
            padding: 25px;
            border-radius: 8px;
            margin: 25px 0;
        }

        .example-title {
            color: #1e40af;
            font-weight: 700;
            font-size: 1.1em;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        /* Table */
        .table-container {
            overflow-x: auto;
            margin: 25px 0;
            border-radius: 10px;
            box-shadow: 0 2px 15px rgba(0,0,0,0.08);
        }

        table {
            width: 100%;
            border-collapse: collapse;
            background: white;
        }

        th {
            background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
            color: white;
            padding: 15px;
            text-align: left;
            font-weight: 600;
        }

        td {
            padding: 15px;
            border-bottom: 1px solid #e5e7eb;
            color: #475569;
        }

        tr:hover {
            background: #f8fafc;
        }

        tr:last-child td {
            border-bottom: none;
        }

        /* Contact Card */
        .contact-card {
            background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
            color: white;
            padding: 40px;
            border-radius: 15px;
            margin: 40px 0;
            box-shadow: 0 10px 40px rgba(30, 64, 175, 0.3);
        }

        .contact-title {
            font-size: 1.8em;
            font-weight: 700;
            margin-bottom: 30px;
            text-align: center;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
        }

        .contact-item {
            background: rgba(255, 255, 255, 0.1);
            padding: 25px;
            border-radius: 10px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .contact-label {
            font-size: 0.9em;
            opacity: 0.9;
            margin-bottom: 8px;
        }

        .contact-value {
            font-size: 1.3em;
            font-weight: 700;
        }

        /* Footer */
        .footer {
            background: #f8fafc;
            padding: 30px 40px;
            text-align: center;
            color: #64748b;
            border-top: 1px solid #e5e7eb;
        }

        /* Responsive */
        @media (max-width: 768px) {
            body {
                padding: 20px 10px;
            }

            .container {
                border-radius: 10px;
            }

            .header {
                padding: 40px 25px;
            }

            .header h1 {
                font-size: 1.8em;
            }

            .content {
                padding: 40px 25px;
            }

            .section-title {
                font-size: 1.5em;
                flex-direction: column;
                align-items: flex-start;
            }

            .brand-grid {
                grid-template-columns: 1fr;
            }

            .toc-list {
                grid-template-columns: 1fr;
            }

            .step {
                flex-direction: column;
            }

            .step::after {
                display: none;
            }

            .header-meta {
                flex-direction: column;
                gap: 15px;
            }
        }

        /* Scroll behavior */
        html {
            scroll-behavior: smooth;
        }
    </style>/* End custom CSS */