.elementor-13147 .elementor-element.elementor-element-f4aa8ac{--display:flex;}/* Start custom CSS for html, class: .elementor-element-4a9728c *//* RESET &amp; BASE */
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
            line-height: 1.6;
            color: #999999;
        }
        /* main container for readability, no max-width restriction as per spec */
        .blog-container {
            width: 100%;
            margin: 0 auto;
        }

        /* HEADINGS colors according to spec */
        h1, h2, h3, h4 {
            font-weight: 600;
            line-height: 1.3;
        }
        /* H1 style via class .global-title (spec) */
        .global-title {
            font-size: 25px;
            text-align: center;
            color: #00849B;
            margin-bottom: 20px;
        }
        /* H2 style via class .sub-title (spec) but using #00D9FF */
        .sub-title {
            font-size: 20px;
		    text-align: center;
		    color: #3E8448
        }
        /* H3 and H4 will have inline styles for color (#FF6B9D for sub-titles) */

        /* TEXT ELEMENTS */
        p {
            color: #999999;
            margin-bottom: 15px;
            font-size: 1.05rem;
        }
        strong {
            color: #6ad8ba; /* bold words in paragraphs */
            font-weight: 600;
        }
        /* Threat words span */
        .threat-word {
            color: #FF4757;
            font-weight: 500;
        }
        /* Protection words span */
        .protect-word {
            color: #2ED573;
            font-weight: 500;
        }

        /* LINKS */
        a {
            color: #2f8ef8;
            text-decoration: none;
            transition: all 0.2s ease;
        }
        a:hover {
            text-decoration: underline;
            opacity: 0.9;
        }
        /* Table of contents links (inside toc-box) */
        .toc-box a {
            color: #e0e0e0;
        }
        .toc-box a:hover {
            color: #ffffff;
        }
        /* Paragraph and list links */
        p a, li a {
            color: #2f8ef8;
        }

        /* LISTS – base styles */
        ul, ol {
            margin: 20px 0 20px 20px;
            padding-left: 20px;
            color: #999999;
        }
        li {
            margin-bottom: 7px;
            position: relative;
            padding-left: 10px;
            color: #999999;
        }
        ul li {
            list-style-type: none;
            position: relative;
            padding-left: 0px;
            color: #999999;
        }
        /* Generic list icon (for most ul) */
        .all-list li:before {
            content: "▹";      /* generic icon */
            color: #00FF88;
            position: absolute;
            left: -20px;
            font-size: 1.2rem;
        }
        /* Special lists for mistakes &amp; best practices */
        .mistake-list li:before {
            content: "✕";
            color: #f82f2f;
            position: absolute;
            left: -20px;
            font-weight: bold;
        }
        .best-list li:before {
            content: "✓";
            color: #00FF88;
            position: absolute;
            left: -20px;
            font-weight: bold;
        }

        /* TABLE STYLES */
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 25px 0;
            background-color: rgba(255, 255, 255, 0.03);
            border: 1px solid #444;
        }
        th, td {
            border: 1px solid #444;
            padding: 15px;
            text-align: left;
            color: #999999;
        }
        th {
            background-color: rgba(0, 217, 255, 0.1);
            color: #00D9FF;
            font-weight: bold;
        }
        tr:nth-child(even) {
            background-color: rgba(255,255,255,0.02);
        }
        td strong {
            color: #6ad8ba;
        }

        /* STEP BOXES */
        .step-box {
            background-color: rgba(42, 45, 62, 0.5);
            border-radius: 8px;
            padding: 20px;
            margin: 25px 0;
            border-left: 4px solid #4ECDC4;
        }
        .step-title {
            color: #4ECDC4;
            margin-top: 0;
            font-size: 1.4rem;
            margin-bottom: 10px;
        }

        /* RED TEAM / BLUE TEAM BOXES */
        .red-blue-box {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin: 30px 0;
        }
        .red-team, .blue-team {
            flex: 1;
            min-width: 300px;
            padding: 25px;
            border-radius: 8px;
        }
        .red-team {
            background-color: rgba(255, 107, 107, 0.05);
            border: 1px solid #FF6B6B;
        }
        .blue-team {
            background-color: rgba(0, 217, 255, 0.05);
            border: 1px solid #00D9FF;
        }
        .red-team h3, .blue-team h3 {
            margin-top: 0;
            color: inherit;
        }
        .red-team h3 {
            color: #FF6B6B;
        }
        .blue-team h3 {
            color: #00D9FF;
        }

        /* TOC BOX */
        .toc-box {
            background-color: rgba(42, 45, 62, 0.5);
            border-radius: 8px;
            padding: 20px;
            margin: 25px 0;
            border-left: 4px solid #00D9FF;
        }
        .toc-box ul {
            margin: 10px 0 0 0;
            padding-left: 20px;
        }
        .toc-box li {
            list-style-type: none;
            padding-left: 0;
        }
        .toc-box li:before {
            content: "▹";
            color: #00D9FF;
            left: -15px;
            position: relative;
        }

        /* FAQ section style */
        .faq-item {
            margin-bottom: 25px;
        }
        .faq-question {
            color: #00D9FF;
            font-weight: 600;
            font-size: 1.2rem;
            margin-bottom: 5px;
        }

        /* MISC */
        hr.gradient-hr {
            border: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, #00D9FF, transparent);
            margin: 40px 0;
        }
        .footer-note {
            text-align: center;
            color: #999999;
            font-size: 0.9em;
            margin-top: 50px;
            padding-top: 20px;
            border-top: 1px solid #444;
        }
        .callout {
            background-color: rgba(0, 217, 255, 0.05);
            border-left: 4px solid #00D9FF;
            padding: 20px;
            margin: 30px 0;
            border-radius: 0 8px 8px 0;
        }/* End custom CSS */