
        :root {
            --primary-color: #30A0FF;
            --secondary-color: #000000;
            --accent-color: #f8fafc;
            --text-color: #374151;
            --border-color: #e5e7eb;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            background-color: #ffffff;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .hero-section {
            background: linear-gradient(135deg, var(--primary-color) 0%, #1e40af 100%);
            color: white;
            padding: 80px 0;
            text-align: center;
        }
        
        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .hero-description {
            font-size: 1.25rem;
            margin-bottom: 40px;
            opacity: 0.9;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .cta-button {
            background-color: var(--secondary-color);
            color: white;
            padding: 15px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            display: inline-block;
            transition: all 0.3s ease;
            margin: 10px;
        }
        
        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
            color: white;
            text-decoration: none;
        }
        
        .cta-button.primary {
            background-color: var(--secondary-color);
        }
        
        .cta-button.secondary {
            background-color: transparent;
            border: 2px solid white;
        }
        
        .section {
            padding: 80px 0;
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--secondary-color);
            margin-bottom: 30px;
            text-align: center;
        }
        
        .section-subtitle {
            font-size: 1.8rem;
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 25px;
        }
        
        .highlight-box {
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
            border-left: 5px solid var(--primary-color);
            padding: 30px;
            margin: 30px 0;
            border-radius: 10px;
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin: 50px 0;
        }
        
        .stat-card {
            background: white;
            border-radius: 15px;
            padding: 40px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        
        .stat-card:hover {
            transform: translateY(-5px);
        }
        
        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary-color);
            display: block;
        }
        
        .stat-label {
            font-size: 1.1rem;
            color: var(--text-color);
            margin-top: 10px;
        }
        
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin: 50px 0;
        }
        
        .feature-card {
            background: white;
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            border: 1px solid var(--border-color);
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }
        
        .feature-icon {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        .feature-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--secondary-color);
            margin-bottom: 15px;
        }
        
        .comparison-table {
            overflow-x: auto;
            margin: 40px 0;
        }
        
        .comparison-table table {
            width: 100%;
            border-collapse: collapse;
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .comparison-table th,
        .comparison-table td {
            padding: 20px;
            text-align: left;
            border-bottom: 1px solid var(--border-color);
        }
        
        .comparison-table th {
            background-color: var(--primary-color);
            color: white;
            font-weight: 600;
        }
        
        .comparison-table tr:hover {
            background-color: #f8fafc;
        }
        
        .testimonial {
            background: linear-gradient(135deg, #1e40af 0%, var(--primary-color) 100%);
            color: white;
            padding: 60px 0;
            text-align: center;
            margin: 60px 0;
            border-radius: 20px;
        }
        
        .testimonial-text {
            font-size: 1.5rem;
            font-style: italic;
            margin-bottom: 30px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .testimonial-author {
            font-size: 1.2rem;
            font-weight: 600;
        }
        
        .faq-section {
            background-color: #f8fafc;
            padding: 80px 0;
        }
        
        .faq-item {
            background: white;
            border-radius: 15px;
            margin-bottom: 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            overflow: hidden;
        }
        
        .faq-question {
            padding: 30px;
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--secondary-color);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background-color 0.3s ease;
        }
        
        .faq-question:hover {
            background-color: #f8fafc;
        }
        
        .faq-answer {
            padding: 0 30px 30px;
            color: var(--text-color);
            line-height: 1.7;
        }
        
        .inquiry-section {
            background: linear-gradient(135deg, var(--secondary-color) 0%, #374151 100%);
            color: white;
            padding: 80px 0;
            text-align: center;
        }
        
        .inquiry-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 30px;
        }
        
        .inquiry-buttons {
            display: flex;
            gap: 30px;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            margin-top: 40px;
        }
        
        .inquiry-btn {
            background-color: var(--primary-color);
            color: white;
            padding: 20px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.2rem;
            display: inline-flex;
            align-items: center;
            gap: 15px;
            transition: all 0.3s ease;
        }
        
        .inquiry-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(48, 160, 255, 0.3);
            color: white;
            text-decoration: none;
        }
        
        .whatsapp-btn {
            background-color: #25D366;
        }
        
        .whatsapp-btn:hover {
            box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
        }
        
        .internal-link {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }
        
        .internal-link:hover {
            color: var(--secondary-color);
            text-decoration: underline;
        }
        
        .product-showcase {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin: 60px 0;
        }
        
        .product-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0,0,0,0.15);
        }
        
        .product-image {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }
        
        .product-info {
            padding: 30px;
        }
        
        .product-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--secondary-color);
            margin-bottom: 15px;
        }
        
        .product-description {
            color: var(--text-color);
            margin-bottom: 25px;
            line-height: 1.6;
        }
        
        .product-btn {
            background-color: var(--primary-color);
            color: white;
            padding: 12px 25px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            display: inline-block;
            transition: all 0.3s ease;
        }
        
        .product-btn:hover {
            background-color: var(--secondary-color);
            color: white;
            text-decoration: none;
        }
        
        .list-style {
            list-style: none;
            margin: 20px 0;
        }
        
        .list-style li {
            padding: 10px 0;
            position: relative;
            padding-left: 30px;
        }
        
        .list-style li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--primary-color);
            font-weight: bold;
            font-size: 1.2rem;
        }
        
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-description {
                font-size: 1.1rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .section-subtitle {
                font-size: 1.5rem;
            }
            
            .stats-grid {
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
                gap: 20px;
            }
            
            .feature-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .product-showcase {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .inquiry-buttons {
                flex-direction: column;
                gap: 20px;
            }
            
            .container {
                padding: 0 15px;
            }
        }
    