
        /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --primary-color: #223777;
            --secondary-color: #000000;
            --accent-color: #4a69bd;
            --light-bg: #f8f9fa;
            --white: #ffffff;
            --text-dark: #333333;
            --text-light: #666666;
            --border-color: #e0e0e0;
            --success-color: #28a745;
            --warning-color: #ffc107;
            --whatsapp-color: #25D366;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.8;
            color: var(--text-dark);
            background-color: var(--white);
            font-size: 16px;
        }
        
        .ueeshop-content-wrapper {
            max-width: 100%;
            margin: 0;
            padding: 0;
        }
        
        .content-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
            color: var(--white);
            padding: 60px 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: repeating-linear-gradient(
                45deg,
                transparent,
                transparent 10px,
                rgba(255, 255, 255, 0.03) 10px,
                rgba(255, 255, 255, 0.03) 20px
            );
        }
        
        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 900px;
            margin: 0 auto;
        }
        
        .hero-title {
            font-size: clamp(1.75rem, 5vw, 2.5rem);
            margin-bottom: 20px;
            font-weight: 700;
            line-height: 1.2;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }
        
        .hero-subtitle {
            font-size: clamp(1rem, 3vw, 1.25rem);
            margin-bottom: 30px;
            opacity: 0.95;
            font-weight: 300;
            line-height: 1.6;
        }
        
        .cta-buttons {
            display: flex;
            gap: 15px;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 30px;
        }
        
        .cta-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 14px 32px;
            background: var(--white);
            color: var(--primary-color);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            min-width: 180px;
        }
        
        .cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.3);
        }
        
        .cta-btn-whatsapp {
            background: var(--whatsapp-color);
            color: var(--white);
        }
        
        .cta-btn-email {
            background: var(--white);
            color: var(--primary-color);
        }
        
        .cta-btn::before {
            content: '✉';
            font-size: 1.2em;
        }
        
        .cta-btn-whatsapp::before {
            content: '📱';
        }
        
        /* Main Content Area */
        .main-content {
            padding: 50px 0;
        }
        
        .intro-box {
            background: var(--light-bg);
            padding: clamp(25px, 5vw, 40px);
            border-radius: 12px;
            margin-bottom: 50px;
            border-left: 5px solid var(--primary-color);
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        
        .intro-box p {
            font-size: 1.05rem;
            line-height: 1.9;
            margin-bottom: 15px;
        }
        
        .intro-box p:last-child {
            margin-bottom: 0;
        }
        
        /* Typography */
        .section-title {
            font-size: clamp(1.75rem, 4vw, 2.2rem);
            color: var(--primary-color);
            margin: 50px 0 25px 0;
            padding-bottom: 12px;
            border-bottom: 3px solid var(--primary-color);
            position: relative;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 80px;
            height: 3px;
            background: var(--accent-color);
        }
        
        .subsection-title {
            font-size: clamp(1.25rem, 3vw, 1.6rem);
            color: var(--secondary-color);
            margin: 35px 0 20px 0;
            padding-left: 20px;
            border-left: 4px solid var(--accent-color);
        }
        
        p {
            margin-bottom: 18px;
            font-size: 1.05rem;
            line-height: 1.8;
        }
        
        strong {
            color: var(--primary-color);
            font-weight: 600;
        }
        
        em {
            color: var(--accent-color);
            font-style: italic;
        }
        
        /* Lists */
        ul, ol {
            margin: 20px 0 20px 20px;
            line-height: 2;
        }
        
        li {
            margin-bottom: 12px;
            font-size: 1.05rem;
            padding-left: 10px;
        }
        
        /* Process Flow */
        .process-flow {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 20px;
            margin: 40px 0;
        }
        
        .process-step {
            background: var(--white);
            padding: 25px 15px;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 3px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border-top: 4px solid var(--primary-color);
        }
        
        .process-step:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 20px rgba(0,0,0,0.15);
        }
        
        .step-number {
            width: 50px;
            height: 50px;
            background: var(--primary-color);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            margin: 0 auto 15px;
        }
        
        .step-title {
            color: var(--secondary-color);
            margin-bottom: 8px;
            font-size: 1.05rem;
            font-weight: 600;
        }
        
        .step-description {
            font-size: 0.9rem;
            color: var(--text-light);
            line-height: 1.5;
        }
        
        /* Info Boxes */
        .info-box {
            background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
            border-left: 5px solid var(--primary-color);
            padding: clamp(20px, 4vw, 30px);
            margin: 30px 0;
            border-radius: 10px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
        }
        
        .info-box-title {
            color: var(--primary-color);
            margin-bottom: 15px;
            font-size: 1.2rem;
            font-weight: 600;
        }
        
        .info-box ul {
            margin-left: 15px;
        }
        
        .warning-box {
            background: #fff3cd;
            border-left: 5px solid var(--warning-color);
            padding: clamp(20px, 4vw, 25px);
            margin: 30px 0;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }
        
        .success-box {
            background: #d4edda;
            border-left: 5px solid var(--success-color);
            padding: clamp(20px, 4vw, 25px);
            margin: 30px 0;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }
        
        .box-title {
            font-weight: 600;
            margin-bottom: 12px;
            font-size: 1.1rem;
        }
        
        /* Tables */
        .table-wrapper {
            overflow-x: auto;
            margin: 30px 0;
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
            border-radius: 10px;
            -webkit-overflow-scrolling: touch;
        }
        
        .responsive-table {
            width: 100%;
            border-collapse: collapse;
            background: var(--white);
            min-width: 600px;
        }
        
        .responsive-table thead {
            background: var(--primary-color);
            color: var(--white);
        }
        
        .responsive-table th {
            padding: 16px;
            text-align: left;
            font-weight: 600;
            font-size: 0.95rem;
        }
        
        .responsive-table td {
            padding: 14px 16px;
            border-bottom: 1px solid var(--border-color);
            font-size: 0.95rem;
        }
        
        .responsive-table tbody tr:hover {
            background: var(--light-bg);
            transition: background 0.2s ease;
        }
        
        .responsive-table tbody tr:last-child td {
            border-bottom: none;
        }
        
        /* Comparison Cards */
        .comparison-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 25px;
            margin: 35px 0;
        }
        
        .comparison-card {
            background: var(--white);
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 3px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border-top: 4px solid var(--primary-color);
        }
        
        .comparison-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 20px rgba(0,0,0,0.15);
        }
        
        .card-title {
            color: var(--primary-color);
            margin-bottom: 15px;
            font-size: 1.2rem;
            font-weight: 600;
        }
        
        .card-content p {
            font-size: 0.95rem;
            margin-bottom: 10px;
            line-height: 1.6;
        }
        
        /* Stats Grid */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 25px;
            margin: 45px 0;
        }
        
        .stat-card {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
            color: var(--white);
            padding: 35px 20px;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 4px 15px rgba(0,0,0,0.15);
            transition: transform 0.3s ease;
        }
        
        .stat-card:hover {
            transform: translateY(-5px);
        }
        
        .stat-number {
            font-size: clamp(2rem, 6vw, 3rem);
            font-weight: bold;
            margin-bottom: 10px;
            line-height: 1;
        }
        
        .stat-label {
            font-size: 1rem;
            opacity: 0.95;
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
            color: var(--white);
            padding: clamp(35px, 6vw, 50px);
            border-radius: 12px;
            text-align: center;
            margin: 50px 0;
            box-shadow: 0 5px 20px rgba(34, 55, 119, 0.3);
        }
        
        .cta-section-title {
            color: var(--white);
            margin-bottom: 18px;
            font-size: clamp(1.5rem, 4vw, 2rem);
            font-weight: 600;
        }
        
        .cta-section p {
            font-size: clamp(1rem, 2.5vw, 1.2rem);
            margin-bottom: 25px;
            opacity: 0.95;
        }
        
        /* Checklist */
        .checklist {
            background: var(--white);
            padding: clamp(20px, 4vw, 30px);
            border-radius: 10px;
            box-shadow: 0 2px 15px rgba(0,0,0,0.08);
            margin: 30px 0;
        }
        
        .checklist-title {
            font-size: 1.2rem;
            margin-bottom: 20px;
            color: var(--primary-color);
            font-weight: 600;
        }
        
        .checklist ul {
            list-style: none;
            margin-left: 0;
        }
        
        .checklist li {
            padding-left: 35px;
            position: relative;
            margin-bottom: 15px;
        }
        
        .checklist li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--success-color);
            font-weight: bold;
            font-size: 1.3em;
            top: -2px;
        }
        
        /* FAQ Section */
        .faq-section {
            background: var(--light-bg);
            padding: clamp(30px, 5vw, 50px);
            border-radius: 12px;
            margin: 50px 0;
        }
        
        .faq-item {
            background: var(--white);
            padding: clamp(20px, 4vw, 30px);
            margin-bottom: 20px;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            border-left: 4px solid var(--primary-color);
        }
        
        .faq-question {
            color: var(--primary-color);
            font-size: 1.15rem;
            margin-bottom: 12px;
            font-weight: 600;
        }
        
        .faq-answer {
            color: var(--text-dark);
            line-height: 1.8;
            font-size: 1rem;
        }
        
        /* Testimonial */
        .testimonial {
            background: var(--white);
            padding: clamp(25px, 5vw, 40px);
            border-radius: 10px;
            box-shadow: 0 3px 15px rgba(0,0,0,0.1);
            margin: 40px 0;
            border-left: 5px solid var(--accent-color);
            font-style: italic;
        }
        
        .testimonial-text {
            font-size: 1.1rem;
            line-height: 1.9;
            color: var(--text-dark);
            margin-bottom: 20px;
        }
        
        .testimonial-author {
            font-weight: 600;
            color: var(--primary-color);
            font-style: normal;
            font-size: 1rem;
        }
        
        /* Conclusion Section */
        .conclusion-section {
            background: var(--light-bg);
            padding: clamp(30px, 5vw, 45px);
            border-radius: 12px;
            margin: 50px 0;
            border-top: 5px solid var(--primary-color);
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-section {
                padding: 40px 15px;
            }
            
            .main-content {
                padding: 30px 0;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: stretch;
            }
            
            .cta-btn {
                width: 100%;
                min-width: auto;
            }
            
            .process-flow {
                grid-template-columns: 1fr;
            }
            
            .comparison-grid {
                grid-template-columns: 1fr;
            }
            
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .table-wrapper {
                margin: 20px -20px;
                border-radius: 0;
            }
            
            .responsive-table th,
            .responsive-table td {
                padding: 10px;
                font-size: 0.85rem;
            }
        }
        
        @media (max-width: 480px) {
            .content-container {
                padding: 0 15px;
            }
            
            .stats-grid {
                grid-template-columns: 1fr;
            }
            
            .intro-box,
            .info-box,
            .warning-box,
            .success-box {
                padding: 20px;
            }
            
            ul, ol {
                margin-left: 10px;
            }
            
            .subsection-title {
                padding-left: 15px;
            }
        }
        
        /* Print Styles */
        @media print {
            .cta-section,
            .cta-buttons {
                display: none;
            }
            
            body {
                font-size: 12pt;
                line-height: 1.5;
            }
            
            .section-title {
                page-break-after: avoid;
            }
            
            .process-step,
            .comparison-card,
            .info-box {
                page-break-inside: avoid;
            }
        }
        
        /* Smooth Scrolling */
        html {
            scroll-behavior: smooth;
        }
        
        /* Accessibility */
        .cta-btn:focus,
        a:focus {
            outline: 2px solid var(--accent-color);
            outline-offset: 2px;
        }
    