 <style>
        :root {
            --primary-color: #153052;
            --secondary-color: #e8c468;
            --background-soft: #f8f9fa;
            --background-light: #ffffff;
            --text-dark: #2c3e50;
            --text-light: #6c757d;
            --border-light: #e9ecef;
            --gradient-soft: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            --gradient-primary: linear-gradient(135deg, #153052 0%, #153052 100%);
            --gradient-secondary: linear-gradient(135deg, #153052 0%, #153052 100%);
        }

             body {
             font-family: "Lama-sans";
        }
          @font-face {
            font-family: "Lama-sans";
            src: url("/assets/font/ArbFONTS-LamaSans-Regular.ttf") format("woff");
          

        }
        
        body {
            line-height: 1.8;
            color: var(--text-dark);
            background: var(--background-soft);
            overflow-x: hidden;

        }
        
        
        .hero-section {
            background: var(--gradient-primary);
            color: white;
            padding: 80px 0;
            text-align: center;
        }
        
        .hero-section h1 {
            font-size: 3.5rem;
            font-weight: 900;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        
        .hero-section p {
            font-size: 1.3rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }
        
        .section-title {
            color: var(--primary-color);
            font-weight: 700;
            font-size: 2.5rem;
            margin: 50px 0 30px 0;
            text-align: center;
            position: relative;
            padding-bottom: 15px;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: var(--gradient-secondary);
            border-radius: 2px;
        }
        
        .feature-card {
            background: var(--background-light);
            border-radius: 15px;
            padding: 30px;
            margin: 20px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border-left: 5px solid var(--primary-color);
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.12);
        }
        
        .feature-card h3 {
            color: var(--primary-color);
            font-weight: 600;
            margin-bottom: 15px;
            font-size: 1.5rem;
        }
        
        .feature-card i {
            font-size: 2.5rem;
            color: var(--secondary-color);
            margin-bottom: 20px;
        }
        
        .city-card {
            background: var(--background-light);
            border-radius: 20px;
            padding: 25px;
            margin: 15px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            border: 2px solid var(--border-light);
            transition: all 0.3s ease;
        }
        
        .city-card:hover {
            border-color: var(--primary-color);
            transform: scale(1.02);
        }
        
        .city-card h4 {
            color: var(--primary-color);
            font-weight: 600;
            margin-bottom: 15px;
            font-size: 1.3rem;
        }
        
        .city-card h4 i {
            color: var(--secondary-color);
        }
        
        .environmental-section {
            background: var(--gradient-primary);
            color: white;
            padding: 60px 0;
            margin: 50px 0;
            border-radius: 20px;
        }
        
        .environmental-section h2 {
            color: white;
            text-align: center;
            margin-bottom: 40px;
        }
        
        .checklist {
            background: var(--background-light);
            border-radius: 15px;
            padding: 30px;
            margin: 20px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }
        
        .checklist h3 {
            color: var(--primary-color);
            font-weight: 600;
            margin-bottom: 20px;
            border-bottom: 2px solid var(--secondary-color);
            padding-bottom: 10px;
        }
        
        .checklist ul {
            list-style: none;
            padding: 0;
        }
        
        .checklist li {
            padding: 8px 0;
            border-bottom: 1px solid var(--border-light);
            position: relative;
            padding-right: 30px;
        }
        
        .checklist li::before {
            content: '\f00c';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            color: var(--secondary-color);
            position: absolute;
            right: 0;
            top: 8px;
        }
        
        .warning-box {
            background: var(--gradient-primary);
            color: white;
            padding: 25px;
            border-radius: 15px;
            margin: 20px 0;
            border-right: 5px solid var(--secondary-color);
        }
        
        .tip-box {
            background: var(--gradient-secondary);
            color: white;
            padding: 25px;
            border-radius: 15px;
            margin: 20px 0;
            border-right: 5px solid var(--primary-color);
        }
        
        .economic-impact {
            background: var(--background-light);
            padding: 50px 0;
            margin: 40px 0;
            border-radius: 20px;
            border: 2px solid var(--border-light);
        }
        
        .stats-card {
            background: var(--background-light);
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            margin: 15px 0;
            transition: transform 0.3s ease;
            border: 2px solid var(--border-light);
        }
        
        .stats-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary-color);
        }
        
        .stats-number {
            font-size: 3rem;
            font-weight: 900;
            color: var(--primary-color);
            display: block;
        }
        
        .stats-label {
            color: var(--text-dark);
            font-weight: 600;
            margin-top: 10px;
        }
        
        .price-table {
            background: var(--background-light);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            margin: 20px 0;
        }
        
        .price-table th {
            background: var(--gradient-primary);
            color: white;
            padding: 20px;
            font-weight: 600;
            text-align: center;
        }
        
        .price-table td {
            padding: 15px 20px;
            text-align: center;
            border-bottom: 1px solid var(--border-light);
        }
        
        .conclusion-section {
            background: var(--gradient-primary);
            color: white;
            padding: 60px 0;
            margin: 50px 0 0 0;
            text-align: center;
        }
        
        .highlight-text {
            background: var(--gradient-secondary);
            color: white;
            padding: 20px;
            border-radius: 10px;
            margin: 15px 0;
            border-right: 4px solid var(--primary-color);
        }
        
        .company-types {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        
        .type-card {
            background: var(--background-light);
            border-radius: 15px;
            padding: 25px;
            border: 2px solid var(--border-light);
            transition: all 0.3s ease;
        }
        
        .type-card:hover {
            border-color: var(--primary-color);
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }
        
        .type-card h4 {
            color: var(--primary-color);
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        .type-card h4 i {
            color: var(--secondary-color);
        }
        
        .content-section {
            padding: 40px 0;
        }
        
        .main-content {
            background: var(--background-light);
            border-radius: 20px;
            padding: 40px;
            margin: 20px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .sidebar-content {
            background: var(--background-light);
            border-radius: 15px;
            padding: 30px;
            margin: 20px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            border: 2px solid var(--border-light);
        }
        
        .sidebar-content h4 {
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        .sidebar-content h4 i {
            color: var(--secondary-color);
        }
        
        .important-note {
            background: var(--gradient-secondary);
            color: white;
            border: 2px solid var(--primary-color);
            border-radius: 10px;
            padding: 20px;
            margin: 20px 0;
            color: 
        }
        
        .important-note h5 i {
            color: var(--primary-color);
        }
        
        .step-card {
            background: var(--background-light);
            border-radius: 12px;
            padding: 25px;
            margin: 15px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            border-right: 4px solid var(--primary-color);
            position: relative;
        }
        
        .step-number {
            position: absolute;
            top: -10px;
            right: 20px;
            background: var(--gradient-primary);
            color: white;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 14px;
        }
        
        .step-card h4 {
            color: var(--primary-color);
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        .faq-item {
            background: var(--background-light);
            border-radius: 12px;
            padding: 25px;
            margin: 15px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            border-left: 4px solid var(--secondary-color);
        }
        
        .faq-item h5 {
            color: var(--primary-color);
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        .faq-item h5 i {
            color: var(--secondary-color);
        }
        
        .call-to-action {
            background: var(--gradient-secondary);
            color: white;
            padding: 40px;
            border-radius: 15px;
            text-align: center;
            margin: 30px 0;
        }
        
        .call-to-action h3 {
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        .call-to-action .btn {
            background: var(--gradient-primary);
            color: white;
            padding: 12px 30px;
            border-radius: 25px;
            text-decoration: none;
            display: inline-block;
            margin-top: 15px;
            transition: all 0.3s ease;
        }
        
        .call-to-action .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        
        .footer-gradient {
            background: var(--gradient-primary);
            color: white;
            padding: 60px 0 20px;
            text-align: center;
        }
        
        .company-logo {
            font-size: 2.5rem;
            font-weight: 900;
            color: var(--secondary-color);
            margin-bottom: 10px;
        }
        
        .company-tagline {
            font-size: 1.1rem;
            opacity: 0.9;
            margin-bottom: 30px;
        }
        
        .footer-section-title {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--secondary-color);
            margin-bottom: 20px;
        }
        
        .contact-info {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
            opacity: 0.9;
        }
        
        .contact-info i {
            color: var(--secondary-color);
            margin-left: 10px;
            width: 20px;
        }
        
        .footer-link {
            display: flex;
            align-items: center;
            color: white;
            text-decoration: none;
            margin-bottom: 8px;
            opacity: 0.9;
            transition: opacity 0.3s ease;
        }
        
        .footer-link:hover {
            opacity: 1;
            color: var(--secondary-color);
        }
        
        .footer-link i {
            margin-left: 8px;
            width: 16px;
        }
        
        .social-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
            margin: 0 5px;
        }
        
        .social-icon:hover {
            transform: translateY(-2px);
            color: var(--secondary-color);
        }
        
        .social-icon.facebook { background: #3b5998; }
        .social-icon.twitter { background: #1da1f2; }
        .social-icon.instagram { background: #e1306c; }
        .social-icon.tiktok { background: #000000; }
        .social-icon.whatsapp { background: #25d366; }
        
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.2);
            padding-top: 20px;
            margin-top: 30px;
            opacity: 0.8;
        }
        
        .footer-bottom a {
            color: var(--secondary-color);
            text-decoration: none;
        }
        
        .footer-bottom a:hover {
            text-decoration: underline;
        }
        
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .feature-card, .main-content, .sidebar-content {
                padding: 20px;
            }
        }
    </style>