.elementor-3 .elementor-element.elementor-element-241325d{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}:root{--page-title-display:none;}@media(max-width:767px){.elementor-3 .elementor-element.elementor-element-241325d{--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}}/* Start custom CSS for html, class: .elementor-element-fade101 */* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --brand: #ff3030;
            --brand-light: #ff5050;
            --brand-dark: #e62929;
            --bg: #000000;
            --bg-secondary: #0a0a0a;
            --bg-card: rgba(255, 255, 255, 0.03);
            --border: rgba(255, 255, 255, 0.1);
            --text: #ffffff;
            --text-secondary: #a1a1a1;
            --radius: 12px;
        }

        body {
            font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--bg);
            color: var(--text);
            line-height: 1.7;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        /* Hero Section */
        .hero {
            min-height: 60vh;
            display: flex;
            align-items: center;
            padding: clamp(4rem, 8vw, 6rem) 0;
            background: var(--bg);
            position: relative;
            overflow: hidden;
            border-bottom: 1px solid var(--border);
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -30%;
            right: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(255, 48, 48, 0.06) 0%, transparent 70%);
            border-radius: 50%;
        }

        .hero-content {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.25rem 0.75rem;
            background: rgba(255, 48, 48, 0.1);
            border: 1px solid rgba(255, 48, 48, 0.2);
            border-radius: 6px;
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--brand);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 1.5rem;
        }

        h1 {
            font-size: clamp(2.5rem, 6vw, 4rem);
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 1rem;
            letter-spacing: -0.02em;
        }

        .update-date {
            font-size: 0.875rem;
            color: var(--text-secondary);
            margin-top: 1rem;
        }

        /* Content Section */
        .content {
            max-width: 900px;
            margin: 0 auto;
            padding: 4rem 0;
        }

        .section {
            margin-bottom: 3rem;
            padding: 2rem;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .section:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
        }

        .section-number {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 28px;
            height: 28px;
            padding: 0 0.5rem;
            background: var(--bg-secondary);
            color: var(--text-secondary);
            border: 1px solid var(--border);
            border-radius: 6px;
            font-weight: 600;
            font-size: 0.8125rem;
            margin-bottom: 1rem;
        }

        h2 {
            font-size: clamp(1.5rem, 3vw, 1.875rem);
            font-weight: 700;
            margin-bottom: 1rem;
            letter-spacing: -0.01em;
        }

        .subsection {
            margin: 1.5rem 0;
        }

        h3 {
            font-size: 1.125rem;
            font-weight: 600;
            margin-bottom: 0.75rem;
            color: var(--text);
        }

        p {
            color: var(--text-secondary);
            margin-bottom: 1rem;
            font-size: 1rem;
            line-height: 1.8;
        }

        .content ul,
        .section ul {
            list-style: none;
            margin: 1rem 0;
            padding-left: 0;
        }

        .content li,
        .section li {
            color: var(--text-secondary);
            margin-bottom: 0.75rem;
            padding-left: 1.5rem;
            position: relative;
            line-height: 1.8;
        }

        .content li::before,
        .section li::before {
            content: '•';
            color: var(--brand);
            font-weight: bold;
            font-size: 1.2rem;
            position: absolute;
            left: 0;
        }

        strong {
            color: var(--text);
            font-weight: 600;
        }

        /* Contact Card */
        .contact-card {
            background: var(--bg-secondary);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 2rem;
            margin-top: 3rem;
            text-align: center;
            max-width: 100%;
        }

        .contact-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            margin-top: 1.5rem;
        }

        .contact-item {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            color: var(--text-secondary);
            font-size: 0.9375rem;
        }

        .contact-item a {
            color: var(--brand);
            text-decoration: none;
            transition: color 0.2s;
            word-break: break-word;
        }

        .contact-item a:hover {
            color: var(--brand-light);
            text-decoration: underline;
        }

        /* Table of Contents - Hidden */
        .toc {
            display: none;
        }

        /* Highlight Box */
        .highlight-box {
            background: rgba(255, 48, 48, 0.05);
            border-left: 3px solid var(--brand);
            padding: 1rem 1.5rem;
            margin: 1.5rem 0;
            border-radius: 4px;
        }

        .highlight-box p {
            margin-bottom: 0;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero {
                min-height: auto;
                padding: 3rem 0 2rem;
            }

            .hero-content {
                padding: 0 1rem;
            }

            h1 {
                font-size: 2rem;
            }

            .content {
                padding: 3rem 0;
            }

            .section {
                padding: 1.5rem;
                margin-left: 1rem;
                margin-right: 1rem;
            }

            .toc {
                margin-left: 1rem;
                margin-right: 1rem;
                padding: 1.5rem;
            }

            .contact-card {
                padding: 1.5rem;
                margin-left: 1rem;
                margin-right: 1rem;
            }

            .contact-info {
                font-size: 0.875rem;
            }

            .contact-item {
                flex-direction: column;
                gap: 0.25rem;
                text-align: center;
            }

            h2 {
                font-size: 1.5rem;
            }

            h3 {
                font-size: 1rem;
            }

            p, .content li, .section li {
                font-size: 0.9375rem;
            }

            .highlight-box {
                margin-left: 1rem;
                margin-right: 1rem;
                padding: 1rem;
            }
        }

        /* Scroll Animation */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .section {
            animation: fadeInUp 0.6s ease-out backwards;
        }

        .section:nth-child(1) { animation-delay: 0.1s; }
        .section:nth-child(2) { animation-delay: 0.15s; }
        .section:nth-child(3) { animation-delay: 0.2s; }
        .section:nth-child(4) { animation-delay: 0.25s; }
        .section:nth-child(5) { animation-delay: 0.3s; }
        .section:nth-child(6) { animation-delay: 0.35s; }
        .section:nth-child(7) { animation-delay: 0.4s; }
        .section:nth-child(8) { animation-delay: 0.45s; }
        .section:nth-child(9) { animation-delay: 0.5s; }/* End custom CSS */