.elementor-7782 .elementor-element.elementor-element-cf113ce{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-31e2ca9 */.header {
            background: white;
            border-radius: 20px;
            padding: 40px;
            margin-bottom: 30px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, #d32a25, #30497d);
        }

        .header h2 {
            color: #2d3748;
            font-size: 2em;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .card {
            background: white;
            border-radius: 20px;
            padding: 35px;
            margin-bottom: 30px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .card-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 25px;
            padding-bottom: 20px;
            border-bottom: 3px solid #f0f0f0;
        }

        .card-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #d32a25, #30497d);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5em;
        }

        .card-header h2 {
            color: #2d3748;
            font-size: 1.8em;
            font-weight: 700;
        }

        .card-body {
            color: #4a5568;
        }

        .card-body p {
            margin-bottom: 15px;
            font-size: 1.05em;
        }

        .card-body a {
            color: #30497d;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .card-body a:hover {
            color: #d32a25;
            text-decoration: underline;
        }

        .section-title {
            font-weight: 700;
            color: #2d3748;
            margin-top: 25px;
            margin-bottom: 15px;
            font-size: 1.3em;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .section-title i {
            color: #d32a25;
        }

        .install-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax( 1fr));
            gap: 20px;
            margin-top: 20px;
        }

        .install-item {
            background: linear-gradient(135deg, #f8f9ff, #f0f4ff);
            padding: 20px;
            border-radius: 15px;
            border-left: 4px solid #d32a25;
            transition: all 0.3s ease;
        }

        .install-item:hover {
            transform: translateX(5px);
            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.2);
        }

        .install-item h3 {
            color: #2d3748;
            margin-bottom: 10px;
            font-size: 1.2em;
        }

        .install-item a {
            display: inline-block;
            margin-top: 10px;
            padding: 8px 20px;
            background: #d32a25;
            color: white;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .install-item a:hover {
            background: #30497d;
            transform: scale(1.05);
        }

        .command-list {
            background: #2d3748;
            color: #e2e8f0;
            padding: 20px;
            border-radius: 10px;
            margin-top: 15px;
            font-family: 'Courier New', monospace;
        }

        .command-list li {
            margin-left: 20px;
            margin-bottom: 10px;
            list-style: none;
            position: relative;
            padding-left: 25px;
        }

        .command-list li::before {
            content: '▸';
            position: absolute;
            left: 0;
            color: #d32a25;
            font-weight: bold;
        }

        .command-list b {
            color: #f093fb;
        }

        .video-section {
            background: linear-gradient(135deg, #fff5f5, #ffe5e5);
            padding: 20px;
            border-radius: 15px;
            border-left: 4px solid #f56565;
            margin-top: 20px;
        }

        .video-section i {
            color: #f56565;
        }

        @media (max-width: 768px) {
            .header h1 {
                font-size: 1.8em;
            }
            
            .install-grid {
                grid-template-columns: 1fr;
            }
        }/* End custom CSS */