
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    
    body {
        background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
        color: #1a2a1f;
        line-height: 1.6;
        padding: 0;
        margin: 0;
    }
    
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
    }
    
    header {
        background: linear-gradient(to right, #14532d, #166534);
        color: white;
        padding: 25px 20px;
        border-radius: 12px 12px 0 0;
        margin-bottom: 25px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .logo {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 15px;
    }
    
    .logo-icon {
        font-size: 32px;
        color: #facc15;
    }
    
    h2 {
        font-size: 26px;
        font-weight: 700;
        margin-bottom: 10px;
    }
    
    h3 {
        font-size: 22px;
        font-weight: 600;
        color: #14532d;
        margin: 25px 0 15px;
        padding-bottom: 10px;
        border-bottom: 2px solid #facc15;
    }
    
    h4 {
        font-size: 20px;
        color: #166534;
        margin: 20px 0 15px;
        font-weight: 600;
    }
    
    h5 {
        font-size: 18px;
        color: #14532d;
        margin: 15px 0 10px;
        font-weight: 600;
    }
    
    .product-highlights {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .highlight-card {
        background: white;
        border-radius: 12px;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease;
        border-left: 3px solid #2ecc71;
    }
    
    .highlight-card:hover {
        transform: translateY(-5px);
    }
    
    .highlight-card i {
        font-size: 28px;
        color: #2ecc71;
        margin-bottom: 15px;
    }
    
    .specs-table {
        width: 100%;
        border-collapse: collapse;
        margin: 20px 0 30px;
        background: white;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }
    
    .specs-table th {
        background: #14532d;
        color: white;
        text-align: left;
        padding: 15px;
        font-weight: 600;
    }
    
    .specs-table td {
        padding: 12px 15px;
        border-bottom: 1px solid #f1f1f1;
    }
    
    .specs-table tr:nth-child(even) {
        background: #f0fdf4;
    }
    
    .specs-table tr:last-child td {
        border-bottom: none;
    }
    
    .custom-option {
        color: #166534;
        font-weight: 500;
    }
    
    .custom-option i {
        color: #2ecc71;
        margin: 0 5px;
    }
    
    .features-list {
        list-style: none;
        margin: 20px 0;
    }
    
    .features-list li {
        padding: 12px 0;
        border-bottom: 1px solid #e5e7eb;
        display: flex;
        align-items: center;
        gap: 12px;
    }
    
    .features-list li:before {
        content: "🌿";
        color: #2ecc71;
        font-weight: bold;
        font-size: 16px;
    }
    
    .tech-comparison {
        background: white;
        border-radius: 12px;
        padding: 25px;
        margin: 30px 0;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        border-left: 4px solid #2ecc71;
    }
    
    .comparison-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        margin-top: 20px;
    }
    
    .comparison-item {
        text-align: center;
        padding: 20px;
        border-radius: 8px;
        background: #f0fdf4;
    }
    
    .comparison-item h5 {
        color: #14532d;
        margin-bottom: 10px;
        font-size: 18px;
    }
    
    .traditional {
        border: 2px dashed #e74c3c;
        background: #fef2f2;
    }
    
    .mg01-design {
        border: 2px solid #2ecc71;
    }
    
    .oem-cta-box {
        background: linear-gradient(to right, #14532d, #166534);
        color: white;
        padding: 35px 30px;
        border-radius: 12px;
        margin: 40px 0;
        text-align: center;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .oem-cta-box h4 {
        color: white;
        margin-bottom: 15px;
        font-size: 26px;
        border-bottom: none;
    }
    
    .oem-cta-box .btn {
        display: inline-block;
        background: #facc15;
        color: #14532d;
        padding: 16px 35px;
        margin-top: 20px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: bold;
        font-size: 18px;
        transition: all 0.3s;
        border: none;
        cursor: pointer;
    }
    
    .oem-cta-box .btn:hover {
        background: #eab308;
        transform: translateY(-3px);
    }
    
    .kimone-module {
        background: white;
        border-radius: 12px;
        padding: 25px;
        margin: 30px 0;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        border: 1px solid #dcfce7;
    }
    
    .module-header {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 20px;
    }
    
    .module-header i {
        font-size: 28px;
        color: #2ecc71;
    }
    
    .disclaimer-content {
        font-size: 14px;
        line-height: 1.7;
        color: #4b5563;
    }
    
    footer {
        text-align: center;
        padding: 20px;
        margin-top: 40px;
        color: #14532d;
        font-size: 13px;
        border-top: 1px solid #dcfce7;
    }
    
    @media (max-width: 768px) {
        h2 { font-size: 22px; }
        h3 { font-size: 19px; }
        .product-highlights { grid-template-columns: 1fr; }
        .specs-table { font-size: 12px; }
        .comparison-grid { grid-template-columns: 1fr; }
        .oem-cta-box { padding: 25px 20px; }
        .oem-cta-box .btn { padding: 12px 22px; font-size: 15px; }
        .container { padding: 15px; }
    }
