.elementor-84 .elementor-element.elementor-element-a12ee0e{--display:flex;}/* Start custom CSS for html, class: .elementor-element-e54cae7 */<style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 100vh;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        /* Navigation */
        .nav-menu {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            margin-bottom: 30px;
            border-radius: 10px;
        }

        .nav-menu ul {
            list-style: none;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            padding: 0 20px;
        }

        .nav-menu a {
            text-decoration: none;
            color: #1e40af;
            padding: 10px 20px;
            border-radius: 5px;
            transition: all 0.3s ease;
            font-weight: 500;
            font-size: 0.95em;
        }

        .nav-menu a:hover {
            background: #1e40af;
            color: #fff;
            transform: translateY(-2px);
        }

        /* Header */
        .header {
            background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
            color: #fff;
            padding: 50px 30px;
            border-radius: 15px;
            margin-bottom: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            text-align: center;
        }

        .header h1 {
            font-size: 2.5em;
            margin-bottom: 15px;
        }

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

        .header p {
            font-size: 1.05em;
            max-width: 900px;
            margin: 0 auto;
            opacity: 0.9;
            line-height: 1.8;
        }

        /* Content Area */
        .content {
            background: #fff;
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            margin-bottom: 30px;
        }

        /* Accordion */
        .accordion-item {
            margin-bottom: 20px;
            border: 2px solid #e5e7eb;
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .accordion-item:hover {
            border-color: #3b82f6;
            box-shadow: 0 5px 15px rgba(59, 130, 246, 0.2);
        }

        .accordion-header {
            background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
            color: #fff;
            padding: 20px 25px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }

        .accordion-header:hover {
            background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
        }

        .accordion-header h2 {
            font-size: 1.4em;
            font-weight: 600;
        }

        .accordion-icon {
            font-size: 1.5em;
            transition: transform 0.3s ease;
        }

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

        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
            background: #f9fafb;
        }

        .accordion-item.active .accordion-content {
            max-height: 3000px;
        }

        .accordion-body {
            padding: 30px 25px;
        }

        /* Section Styling */
        .section {
            margin-bottom: 25px;
        }

        .section h3 {
            color: #1e40af;
            font-size: 1.3em;
            margin-bottom: 15px;
            padding-bottom: 8px;
            border-bottom: 2px solid #3b82f6;
        }

        .section p {
            color: #4b5563;
            margin-bottom: 15px;
            line-height: 1.8;
        }

        /* Numbered Steps */
        .steps {
            counter-reset: step-counter;
            list-style: none;
            padding-left: 0;
        }

        .steps li {
            counter-increment: step-counter;
            padding: 15px 15px 15px 60px;
            margin-bottom: 15px;
            position: relative;
            background: #f8f9fa;
            border-left: 4px solid #3b82f6;
            border-radius: 5px;
            line-height: 1.7;
        }

        .steps li:before {
            content: counter(step-counter);
            position: absolute;
            left: 15px;
            top: 15px;
            background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
            color: #fff;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 0.9em;
        }

        .steps li strong {
            color: #1e40af;
        }

        /* Bullet List */
        .bullet-list {
            list-style: none;
            padding-left: 0;
        }

        .bullet-list li {
            padding: 10px 0 10px 30px;
            position: relative;
            color: #4b5563;
            line-height: 1.7;
        }

        .bullet-list li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #10b981;
            font-weight: bold;
            font-size: 1.2em;
        }

        .bullet-list.warning li:before {
            content: "✗";
            color: #ef4444;
        }

        /* Info Box */
        .info-box {
            background: #dbeafe;
            border-left: 4px solid #3b82f6;
            padding: 20px;
            margin: 20px 0;
            border-radius: 5px;
            color: #1e40af;
        }

        .info-box strong {
            color: #1e3a8a;
            display: block;
            margin-bottom: 8px;
            font-size: 1.1em;
        }

        .info-box code {
            background: #fff;
            padding: 3px 8px;
            border-radius: 3px;
            color: #dc2626;
            font-family: 'Courier New', monospace;
            font-size: 0.95em;
        }

        /* Warning Box */
        .warning-box {
            background: #fef3c7;
            border-left: 4px solid #f59e0b;
            padding: 20px;
            margin: 20px 0;
            border-radius: 5px;
            color: #78350f;
        }

        .warning-box strong {
            color: #92400e;
            display: block;
            margin-bottom: 8px;
            font-size: 1.1em;
        }

        /* Danger Box */
        .danger-box {
            background: #fee2e2;
            border-left: 4px solid #ef4444;
            padding: 20px;
            margin: 20px 0;
            border-radius: 5px;
            color: #7f1d1d;
        }

        .danger-box strong {
            color: #991b1b;
            display: block;
            margin-bottom: 8px;
            font-size: 1.1em;
        }

        /* Email Example */
        .email-example {
            background: #f8f9fa;
            padding: 20px;
            border-radius: 8px;
            margin: 15px 0;
            border: 2px solid #e5e7eb;
        }

        .email-example strong {
            color: #1e40af;
            display: block;
            margin-bottom: 10px;
        }

        .email-example code {
            background: #fff;
            padding: 8px 12px;
            border-radius: 5px;
            display: inline-block;
            color: #dc2626;
            font-family: 'Courier New', monospace;
            font-size: 1.05em;
            border: 1px solid #e5e7eb;
        }

        /* Footer */
        .footer {
            background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
            color: #fff;
            padding: 35px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .footer h3 {
            margin-bottom: 10px;
            font-size: 1.6em;
        }

        .footer p {
            margin-bottom: 20px;
            opacity: 0.95;
        }

        .footer-contact {
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
            margin-top: 15px;
        }

        .footer-contact div {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.1em;
        }

        .footer-contact a {
            color: #fff;
            text-decoration: none;
            transition: opacity 0.3s ease;
        }

        .footer-contact a:hover {
            opacity: 0.8;
            text-decoration: underline;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .header h1 {
                font-size: 1.8em;
            }

            .header .subtitle {
                font-size: 1.1em;
            }

            .header p {
                font-size: 1em;
            }

            .content {
                padding: 25px;
            }

            .accordion-header h2 {
                font-size: 1.1em;
            }

            .nav-menu ul {
                flex-direction: column;
                align-items: center;
            }

            .footer-contact {
                flex-direction: column;
                gap: 15px;
            }

            .steps li {
                padding-left: 55px;
            }
        }
    </style>/* End custom CSS */