
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f8f9fa;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .article-header {
            background: linear-gradient(135deg, #30A0FF 0%, #2684d1 100%);
            color: white;
            padding: 60px 0;
            text-align: center;
        }

        .article-header h1 {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 20px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }

        .article-header .subtitle {
            font-size: 1.2rem;
            opacity: 0.9;
            max-width: 800px;
            margin: 0 auto;
        }

        .content-section {
            background: white;
            margin: 40px 0;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }

        .section-title {
            color: #30A0FF;
            font-size: 2rem;
            margin-bottom: 25px;
            border-bottom: 3px solid #30A0FF;
            padding-bottom: 10px;
        }

        .intro-text {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 30px;
            color: #555;
        }

        .highlight-box {
            background: linear-gradient(135deg, #30A0FF 0%, #2684d1 100%);
            color: white;
            padding: 30px;
            border-radius: 15px;
            margin: 30px 0;
            text-align: center;
        }

        .highlight-box h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }

        .feature-card {
            background: white;
            border: 2px solid #e9ecef;
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 3px 15px rgba(0,0,0,0.1);
        }

        .feature-card:hover {
            transform: translateY(-5px);
            border-color: #30A0FF;
            box-shadow: 0 8px 25px rgba(48, 160, 255, 0.2);
        }

        .feature-image {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }

        .feature-content {
            padding: 25px;
        }

        .feature-content h3 {
            color: #30A0FF;
            font-size: 1.4rem;
            margin-bottom: 15px;
        }

        .feature-content p {
            color: #666;
            line-height: 1.6;
        }

        .services-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }

        .service-item {
            background: #f8f9fa;
            padding: 25px;
            border-radius: 10px;
            border-left: 4px solid #30A0FF;
            transition: all 0.3s ease;
        }

        .service-item:hover {
            background: #e7f3ff;
            transform: translateX(5px);
        }

        .service-item h4 {
            color: #000000;
            font-size: 1.2rem;
            margin-bottom: 10px;
        }

        .cta-section {
            background: linear-gradient(135deg, #000000 0%, #333333 100%);
            color: white;
            padding: 50px;
            border-radius: 15px;
            text-align: center;
            margin: 40px 0;
        }

        .cta-section h2 {
            font-size: 2rem;
            margin-bottom: 20px;
        }

        .cta-section p {
            font-size: 1.1rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .contact-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .contact-btn {
            display: inline-block;
            padding: 15px 30px;
            background: #30A0FF;
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            transition: all 0.3s ease;
            border: 2px solid #30A0FF;
        }

        .contact-btn:hover {
            background: transparent;
            color: #30A0FF;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(48, 160, 255, 0.3);
        }

        .contact-btn.whatsapp {
            background: #25D366;
            border-color: #25D366;
        }

        .contact-btn.whatsapp:hover {
            background: transparent;
            color: #25D366;
            box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
        }

        .inline-cta {
            background: #fff3cd;
            border: 1px solid #ffeaa7;
            border-radius: 10px;
            padding: 20px;
            margin: 30px 0;
            text-align: center;
        }

        .inline-cta p {
            color: #856404;
            font-weight: 500;
            margin-bottom: 15px;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin: 30px 0;
        }

        .benefit-item {
            background: white;
            padding: 30px;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 3px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }

        .benefit-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }

        .benefit-icon {
            width: 60px;
            height: 60px;
            background: #30A0FF;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 24px;
            color: white;
        }

        .stats-section {
            background: #f8f9fa;
            padding: 40px;
            border-radius: 15px;
            margin: 40px 0;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            text-align: center;
        }

        .stat-item h3 {
            font-size: 2.5rem;
            color: #30A0FF;
            margin-bottom: 10px;
        }

        .stat-item p {
            color: #666;
            font-weight: 500;
        }

        @media (max-width: 768px) {
            .article-header h1 {
                font-size: 2rem;
            }
            
            .article-header .subtitle {
                font-size: 1rem;
            }
            
            .content-section {
                padding: 25px;
                margin: 20px 0;
            }
            
            .section-title {
                font-size: 1.6rem;
            }
            
            .contact-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .contact-btn {
                width: 80%;
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }
            
            .article-header {
                padding: 40px 0;
            }
            
            .content-section {
                padding: 20px;
            }
            
            .features-grid {
                grid-template-columns: 1fr;
            }
        }
    