.elementor-2676 .elementor-element.elementor-element-5b029f8{--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;}@media(min-width:768px){.elementor-2676 .elementor-element.elementor-element-5b029f8{--width:100%;}}/* Start custom CSS for html, class: .elementor-element-ac4d3a4 *//* Variables */
.container {
    --muted: #6b7280;
    --primary: #3b82f6;
    --accent: #8b5cf6;
    --card-bg: rgba(255, 255, 255, 0.05);
    --border: rgba(255, 255, 255, 0.1);
}

/* Header */
.container header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 30px;
    text-align: center;
    padding: 20px;
    background: var(--card-bg);
    border-radius: 12px;
    border: 1px solid var(--border);
    animation: fadeInDown 0.8s ease-out;
}

.container .brand {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.container h1 {
    font-size: clamp(22px, 4vw, 32px);
    margin: 0;
    letter-spacing: -0.5px;
    background: linear-gradient(90deg, #fff, var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: textGlow 3s ease-in-out infinite alternate;
}

.container p.lead {
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 16px;
    width: 80%;
    text-align: center !important;
    align-self: center;
    
}

/* TOC */
.container .toc {
    background: var(--card-bg);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--border);
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.container .toc h2 {
    font-size: 20px;
    margin: 0 0 20px;
    text-align: center;
    color: var(--primary);
    position: relative;
    padding-bottom: 10px;
}

.container .toc h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
}

.container .toc ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.container .toc li {
    min-width: 180px;
    text-align: center;
}

.container .toc a {
    display: block;
    padding: 10px 14px;
    border-radius: 8px;
    color: var(--muted);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease-in-out;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
}

.container .toc a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transform: translateY(-2px);
}

/* Article */
.container article {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Sections */
.container section {
    background: var(--card-bg);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid var(--border);
    animation: fadeIn 0.8s ease-out both;
}

.container section:nth-child(1) { animation-delay: 0.3s; }
.container section:nth-child(2) { animation-delay: 0.4s; }
.container section:nth-child(3) { animation-delay: 0.5s; }
.container section:nth-child(4) { animation-delay: 0.6s; }
.container section:nth-child(5) { animation-delay: 0.7s; }
.container section:nth-child(6) { animation-delay: 0.8s; }
.container section:nth-child(7) { animation-delay: 0.9s; }

.container .section-title {
    margin: 0 0 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border);
    position: relative;
    animation: slideInLeft 0.8s ease-out;
}

.container .section-title::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--primary);
}

.container h2, .container h3 {
    color: #fff;
    margin-bottom: 15px;
}

.container h3 {
    color: var(--primary);
    margin-top: 20px;
    
}

/* Content Styles */
.container p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #ffffff !important;
}

.container ul, .container ol {
    margin: 15px 0;
    padding-left: 20px;
}

.container li {
    margin-bottom: 8px;
    line-height: 1.5;
    color: #ffffff !important;
}

.container li strong{
 color: var(--primary);
}

.container code {
    background: rgba(0, 0, 0, 0.3);
    padding: 5px 6px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    border: 1px solid var(--border);
    color: #ffffff !important;
}

.container a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.container a:hover {
    color: var(--accent);
}

.container .note {
    background: rgba(59, 130, 246, 0.1);
    padding: 15px;
    border-radius: 8px;
    border-left: 3px solid var(--primary);
    margin: 20px 0;
    color: #ffffff !important;
}

.container .step-img {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    padding: 10px;
    margin-top: 25px;
    margin-bottom: 25px;
    
}

/* Table */
.container table.responsive-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: var(--primary);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #ffffff;
}

.container table.responsive-table th,
.container table.responsive-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #ffffff;
    color: #ffffff !important;
}

.container table.responsive-table th {
    background: rgba(0, 0, 0, 0.3);
    color: var(--primary);
    font-weight: 500;
}

.container table.responsive-table tr:last-child td {
    border-bottom: none;
}

/* FAQ */
.container .faq-item {
    margin-bottom: 15px;
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
}

.container .faq-question {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease;
}

.container .faq-question:hover {
    background: rgba(0, 0, 0, 0.3);
}

.container .faq-answer {
    display: none;
    padding: 15px;
    background: rgba(0, 0, 0, 0.1);
    border-top: 1px solid var(--border);
}

/* Footer */
.container footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    text-align: center;
    color: var(--muted);
    font-size: 14px;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes textGlow {
    from {
        text-shadow: 0 0 5px rgba(59, 130, 246, 0.5);
    }
    to {
        text-shadow: 0 0 15px rgba(59, 130, 246, 0.8), 0 0 20px rgba(59, 130, 246, 0.6);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .container .toc ul {
        flex-direction: column;
    }
    
    .container .toc li {
        min-width: 100%;
    }
    
    .container section {
        padding: 20px 15px;
    }
    
    .container table.responsive-table {
        font-size: 14px;
    }
    
    .container table.responsive-table th,
    .container table.responsive-table td {
        padding: 8px 10px;
    }
}

.step-img img{
    width: 100% !important;
    border-radius: 20px;
    
}/* End custom CSS */