/* Start custom CSS for html, class: .elementor-element-36c46d2 */* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            font-size: 1.1rem;
            background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
            color: #e8e8e8;
            line-height: 1.8;
            overflow-x: hidden;
        }

        /* Hero Section */
        .hero-section {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(26, 26, 26, 0.95) 50%, rgba(201, 169, 97, 0.1) 100%);
            padding: 80px 20px;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
            animation: pulse 4s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 0.5; }
            50% { opacity: 0.8; }
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 900px;
            margin: 0 auto;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 50%, #D4AF37 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 30px;
            text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
            animation: fadeInUp 1s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-subtitle {
            font-size: 1.3rem;
            color: #C9A961;
            margin-bottom: 40px;
            font-weight: 300;
            letter-spacing: 1px;
            animation: fadeInUp 1s ease-out 0.2s both;
        }

        .hero-description {
            font-size: 1.25rem;
            color: #d4d4d4;
            line-height: 2;
            margin-bottom: 50px;
            text-align: justify;
            background: rgba(45, 45, 45, 0.6);
            padding: 35px;
            border-radius: 15px;
            border: 1px solid rgba(212, 175, 55, 0.2);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(10px);
            animation: fadeInUp 1s ease-out 0.4s both;
        }

        .hero-description strong {
            color: #D4AF37;
            font-weight: 600;
        }

        .hero-buttons {
            display: flex;
            gap: 25px;
            justify-content: center;
            flex-wrap: wrap;
            animation: fadeInUp 1s ease-out 0.6s both;
        }

        .btn {
            padding: 18px 45px;
            font-size: 1.1rem;
            font-weight: 600;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .btn:hover::before {
            width: 300px;
            height: 300px;
        }

        .btn-primary {
            background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 50%, #C9A961 100%);
            color: #000000;
        }

        .btn-primary:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
            color: #000000;
        }

        .btn-secondary {
            background: transparent;
            color: #D4AF37;
            border: 2px solid #D4AF37;
        }

        .btn-secondary:hover {
            background: rgba(212, 175, 55, 0.1);
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
            border-color: #F4D03F;
            color: #F4D03F;
        }

        .btn span {
            position: relative;
            z-index: 1;
        }

        .btn-primary span {
            color: #000000;
        }

        .btn-small {
            padding: 12px 25px;
            font-size: 0.95rem;
            margin: 8px;
            text-transform: none;
            letter-spacing: 0.5px;
        }

        .btn-group {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
            margin: 30px 0;
        }

        /* Content Section */
        .content-section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 80px 20px;
        }

        .section-title {
            font-size: 2.5rem;
            color: #D4AF37;
            margin-bottom: 30px;
            text-align: center;
            position: relative;
            padding-bottom: 20px;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, transparent, #D4AF37, transparent);
        }

        .content-box {
            background: rgba(45, 45, 45, 0.7);
            padding: 40px;
            border-radius: 15px;
            margin-bottom: 40px;
            border: 1px solid rgba(212, 175, 55, 0.2);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .content-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 40px rgba(212, 175, 55, 0.2);
            border-color: rgba(212, 175, 55, 0.4);
        }

        .content-box h3 {
            color: #F4D03F;
            font-size: 1.8rem;
            margin-bottom: 20px;
            text-align: right;
        }

        .content-box p {
            font-size: 1.15rem;
            color: #d4d4d4;
            line-height: 2;
            margin-bottom: 15px;
            text-align: right;
        }

        .content-box img {
            width: 100%;
            height: auto;
            border-radius: 10px;
            margin: 20px 0;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
        }

        .content-box a {
            color: #D4AF37;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .content-box a:hover {
            color: #F4D03F;
            text-decoration: underline;
        }

        /* FAQ Section */
        .faq-item {
            background: rgba(35, 35, 35, 0.8);
            padding: 25px;
            border-radius: 10px;
            margin-bottom: 20px;
            border-right: 4px solid #D4AF37;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            background: rgba(45, 45, 45, 0.9);
            transform: translateX(-5px);
        }

        .faq-question {
            color: #F4D03F;
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 15px;
            cursor: pointer;
        }

        .faq-answer {
            font-size: 1.15rem;
            color: #d4d4d4;
            line-height: 1.8;
            padding-right: 20px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }

            .hero-subtitle {
                font-size: 1.1rem;
            }

            .hero-description {
                font-size: 1.1rem;
                padding: 25px;
            }

            .content-box p,
            .faq-answer,
            .highlight-box p,
            .step-guide li p {
                font-size: 1.05rem;
            }

            .btn-small {
                padding: 10px 20px;
                font-size: 0.9rem;
                margin: 5px;
            }

            .btn-group {
                flex-direction: column;
                align-items: stretch;
            }

            .btn-group .btn {
                width: 100%;
                max-width: 300px;
            }

            .btn {
                padding: 15px 35px;
                font-size: 1rem;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .section-title {
                font-size: 2rem;
            }

            .content-box {
                padding: 25px;
            }
        }

        /* Scroll Animation */
        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in {
            animation: slideIn 0.8s ease-out;
        }

        /* Enhanced Lists */
        .enhanced-list {
            list-style: none;
            padding: 0;
            margin: 25px 0;
        }

        .enhanced-list li {
            padding: 15px 50px 15px 20px;
            margin-bottom: 12px;
            background: rgba(45, 45, 45, 0.6);
            border-radius: 8px;
            border-right: 4px solid #D4AF37;
            position: relative;
            transition: all 0.3s ease;
            line-height: 1.8;
        }

        .enhanced-list li::before {
            content: '✓ ';
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            color: #D4AF37;
            font-weight: bold;
            font-size: 1.1rem;
        }

        .enhanced-list li:hover {
            background: rgba(45, 45, 45, 0.9);
            transform: translateX(-5px);
            border-right-color: #F4D03F;
        }

        .enhanced-list li strong {
            color: #F4D03F;
            font-weight: 600;
        }

        /* Highlight Boxes */
        .highlight-box {
            padding: 25px 30px;
            margin: 30px 0;
            border-radius: 12px;
            border-right: 5px solid;
            background: rgba(45, 45, 45, 0.8);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
            position: relative;
        }

        .highlight-box::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 0 12px 0 50px;
        }

        .highlight-box.tip {
            border-right-color: #4CAF50;
            background: linear-gradient(135deg, rgba(76, 175, 80, 0.1) 0%, rgba(45, 45, 45, 0.9) 100%);
        }

        .highlight-box.tip .highlight-title {
            color: #4CAF50;
        }

        .highlight-box.warning {
            border-right-color: #FF9800;
            background: linear-gradient(135deg, rgba(255, 152, 0, 0.1) 0%, rgba(45, 45, 45, 0.9) 100%);
        }

        .highlight-box.warning .highlight-title {
            color: #FF9800;
        }

        .highlight-box.info {
            border-right-color: #2196F3;
            background: linear-gradient(135deg, rgba(33, 150, 243, 0.1) 0%, rgba(45, 45, 45, 0.9) 100%);
        }

        .highlight-box.info .highlight-title {
            color: #2196F3;
        }

        .highlight-box.success {
            border-right-color: #00BCD4;
            background: linear-gradient(135deg, rgba(0, 188, 212, 0.1) 0%, rgba(45, 45, 45, 0.9) 100%);
        }

        .highlight-box.success .highlight-title {
            color: #00BCD4;
        }

        .highlight-title {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            flex-direction: row;
        }

        .highlight-title::before {
            content: '';
            width: 25px;
            height: 25px;
            border-radius: 50%;
            background: currentColor;
            opacity: 0.2;
            margin-left: 10px;
        }

        .highlight-box p {
            font-size: 1.15rem;
            margin: 0;
            color: #d4d4d4;
            line-height: 1.9;
            text-align: right;
        }

        .highlight-box ul {
            margin: 15px 0 0 0;
            padding-right: 25px;
            color: #d4d4d4;
        }

        .highlight-box ul li {
            margin-bottom: 10px;
            line-height: 1.8;
        }

        /* Data Tables */
        .data-table {
            width: 100%;
            margin: 30px 0;
            border-collapse: collapse;
            background: rgba(35, 35, 35, 0.8);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
        }

        .data-table th {
            background: linear-gradient(135deg, #D4AF37 0%, #C9A961 100%);
            color: #1a1a1a;
            padding: 18px;
            text-align: right;
            font-weight: 700;
            font-size: 1.1rem;
            border-bottom: 2px solid rgba(212, 175, 55, 0.3);
        }

        .data-table td {
            padding: 15px 18px;
            border-bottom: 1px solid rgba(212, 175, 55, 0.1);
            color: #d4d4d4;
            line-height: 1.8;
        }

        .data-table tr:last-child td {
            border-bottom: none;
        }

        .data-table tr:hover {
            background: rgba(212, 175, 55, 0.1);
        }

        .data-table td:first-child {
            font-weight: 600;
            color: #F4D03F;
        }

        /* Step Guide */
        .step-guide {
            counter-reset: step-counter;
            list-style: none;
            padding: 0;
            margin: 30px 0;
        }

        .step-guide li {
            counter-increment: step-counter;
            padding: 25px;
            margin-bottom: 20px;
            background: rgba(45, 45, 45, 0.7);
            border-radius: 12px;
            border: 1px solid rgba(212, 175, 55, 0.2);
            position: relative;
            transition: all 0.3s ease;
        }

        .step-guide li::before {
            content: counter(step-counter);
            display: inline-block;
            width: 25px;
            height: 25px;
            background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
            color: #1a1a1a;
            border-radius: 50%;
            text-align: center;
            line-height: 25px;
            font-weight: 700;
            font-size: 0.85rem;
            margin-left: 8px;
            vertical-align: middle;
            box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
        }

        .step-guide li:hover {
            transform: translateX(-5px);
            border-color: rgba(212, 175, 55, 0.5);
            box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
        }

        .step-guide li strong {
            color: #F4D03F;
            font-weight: 600;
            display: inline;
            margin-bottom: 0;
            font-size: 1.1rem;
        }

        .step-guide li p {
            font-size: 1.15rem;
            margin: 0;
            color: #d4d4d4;
            line-height: 1.9;
            text-align: right;
        }

        /* Highlight Links */
        .highlight-link {
            color: #F4D03F;
            background: rgba(244, 208, 63, 0.15);
            padding: 2px 6px;
            border-radius: 4px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .highlight-link:hover {
            background: rgba(244, 208, 63, 0.25);
            color: #D4AF37;
            text-decoration: underline;
        }

        /* Video Embed */
        .video-container {
            position: relative;
            width: 100%;
            max-width: 800px;
            margin: 40px auto;
            padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
            height: 0;
            overflow: hidden;
            border-radius: 15px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
            border: 1px solid rgba(212, 175, 55, 0.2);
        }

        .video-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }

        @media (max-width: 768px) {
            .video-container {
                margin: 30px auto;
                border-radius: 10px;
            }
        }/* End custom CSS */