
        /* General Styles */
        body {
            background-color: #ffffff;
            color: #1f2937;
            margin: 0;
            line-height: 1.6;
        }
        * {
            box-sizing: border-box;
        }
        /* Custom Classes to avoid Bootstrap conflicts */
        .ig-container {
            margin-left: auto;
            margin-right: auto;
            padding: 2rem;
        }
        .ig-text-center {
            text-align: center;
        }
        .ig-mb-12 {
            margin-bottom: 3rem;
        }
        .ig-main-title {
            font-size: 2.25rem; /* 36px */
            font-weight: 700;
            color: #1e3a8a; /* sky-800 */
            margin-bottom: 0.5rem;
        }
        .ig-subtitle {
            font-size: 1.125rem; /* 18px */
            color: #0284c7; /* Changed to blue */
            margin-top: 0.5rem;
            margin-bottom: 0.5rem;
        }
        .ig-intro-text {
            display: flex;
            align-items: center;
            justify-content: flex-start; /* Aligns to the right in RTL */
            gap: 0.5rem;
            margin-bottom: 1rem;
        }
        .ig-intro-text p {
            color: #111827; /* gray-900 */
            margin: 0;
        }
        .ig-intro-text svg {
            width: 1.5rem;
            height: 1.5rem;
            color: #0284c7; /* sky-600 */
        }
        /* Timeline/Steps Styling */
        .ig-steps-wrapper {
            display: flex;
            flex-direction: column;
            gap: 4rem;
        }
        .ig-step-card {
            position: relative;
            padding-right: 2.5rem;
        }
        .ig-step-card:not(:last-child)::before {
            content: '';
            position: absolute;
            right: 18px;
            top: 40px;
            width: 4px;
            height: calc(100% + 4rem);
            border-radius: 2px;
        }
        .ig-step-card:not(:last-child)::after {
            content: '';
            position: absolute;
            right: 12px;
            top: calc(100% + 1.5rem);
            width: 0;
            height: 0;
            border-left: 8px solid transparent;
            border-right: 8px solid transparent;
            border-top: 10px solid;
        }
        #download::before { background-color: #7dd3fc; }
        #download::after  { border-top-color: #7dd3fc; }
        #install::before { background-color: #86efac; }
        #install::after  { border-top-color: #86efac; }
        .ig-step-icon {
            position: absolute;
            right: 0;
            top: 0;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 4px solid #ffffff;
            z-index: 10;
            font-weight: bold;
            color: white;
        }
        .ig-step-content {
            padding: 1.5rem;
            border-radius: 0.5rem;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
            border: 1px solid #e5e7eb;
        }
        /* Colors for step cards */
        .ig-bg-sky { background-color: #f0f9ff; }
        .ig-bg-green { background-color: #f0fdf4; }
        .ig-step-header {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
        }
        .ig-step-header svg {
            width: 2rem;
            height: 2rem;
            margin-left: 0.75rem;
        }
        .ig-step-title {
            font-size: 1.5rem; /* 24px */
            font-weight: 700;
        }
        .ig-color-sky { color: #0369a1; } /* sky-700 */
        .ig-color-green { color: #15803d; } /* green-700 */
        .ig-list {
            list-style: disc;
            padding-right: 1.5rem; /* For list marker */
        }
        .ig-list li {
            margin-bottom: 1rem;
        }
        .ig-list a {
            color: #0284c7; /* sky-600 */
            font-weight: 600;
            text-decoration: none;
        }
        .ig-list a:hover {
            text-decoration: underline;
        }
        /* Toggle Arrow */
        .ig-toggle-arrow {
            display: inline-block;
            margin-right: 0.5rem;
            cursor: pointer;
        }
        .ig-toggle-arrow svg {
             transition: transform 0.3s ease-in-out;
             animation: ig-blink 1.8s infinite ease-in-out;
             display: inline-block;
             vertical-align: middle;
             width: 1rem;
             height: 1rem;
        }
        .ig-rotate-180 {
            transform: rotate(180deg);
        }
        @keyframes ig-blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.3; }
        }
        /* Image Placeholder */
        .ig-image-placeholder {
            background-color: #f3f4f6;
            border: 2px dashed #9ca3af;
            color: #6b7280;
            border-radius: 0.5rem;
            display: none; /* Hidden by default */
            align-items: center;
            justify-content: center;
            text-align: center;
            font-size: 0.875rem;
            min-height: 200px;
            width: 100%;
            margin-top: 1rem;
            padding: 1rem;
            cursor: pointer;
            transition: transform 0.2s ease-in-out; /* Added for hover effect */
        }
        .ig-image-placeholder:hover {
            transform: scale(1.03); /* Added hover effect */
        }
        /* Image Zoom Modal */
        .ig-modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: hidden; 
            background-color: rgba(0, 0, 0, 0.9);
        }
        .ig-modal-content-wrapper {
            position: relative;
            width: 100%;
            height: 100%;
            overflow: hidden; /* This will contain the pannable image */
        }
        .ig-modal-content {
            margin: auto;
            display: block;
            width: auto;
            height: auto;
            max-width: 100%;
            max-height: 100%;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(1);
            transition: transform 0.2s ease-in-out;
            cursor: grab;
        }
        .ig-modal-content:active {
            cursor: grabbing;
        }
        #ig-modal-close {
            position: absolute;
            top: 15px;
            right: 35px;
            color: #f1f1f1;
            font-size: 40px;
            font-weight: bold;
            transition: 0.3s;
            cursor: pointer;
            z-index: 1001;
        }
        #ig-modal-zoom-controls {
            position: absolute;
            top: 20px;
            left: 20px;
            z-index: 1001;
            display: flex;
            gap: 10px;
        }
        #ig-modal-zoom-controls button {
            background: rgba(255, 255, 255, 0.8);
            border: none;
            width: 40px;
            height: 40px;
            font-size: 24px;
            font-weight: bold;
            cursor: pointer;
            border-radius: 50%;
        }