
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background-color: #fafaf7;
            color: #1e2a1c;
            line-height: 1.5;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 60px 24px;
        }

        /* Header */
        .header {
            text-align: center;
            margin-bottom: 56px;
        }
        .header h1 {
            font-size: 2.5rem;
            font-weight: 700;
            color: #2c3e2f;
            margin-bottom: 16px;
            letter-spacing: -0.02em;
        }
        .header p {
            max-width: 700px;
            margin: 0 auto;
            color: #5a6b52;
            font-size: 1.1rem;
        }
        .header:after {
            content: '';
            display: block;
            width: 60px;
            height: 3px;
            background: #d4a373;
            margin: 24px auto 0;
            border-radius: 2px;
        }

        /* Section Titles */
        .section-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: #2c3e2f;
            text-align: center;
            margin: 64px 0 40px;
            position: relative;
        }
        .section-title:after {
            content: '';
            display: block;
            width: 60px;
            height: 3px;
            background: #d4a373;
            margin: 12px auto 0;
            border-radius: 2px;
        }

        /* Models Grid (3 cards) */
        .models-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 32px;
            margin-bottom: 24px;
        }
        .model-card {
            background: white;
            border-radius: 28px;
            overflow: hidden;
            box-shadow: 0 8px 24px rgba(0,0,0,0.04);
            transition: transform 0.2s;
        }
        .model-card:hover {
            transform: translateY(-6px);
        }
        .model-img {
            height: 200px;
            background: #e8e6dc;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #8b9a7a;
            font-size: 0.85rem;
            text-align: center;
        }
        .model-content {
            padding: 28px 24px 32px;
        }
        .model-title {
            font-size: 1.6rem;
            font-weight: 700;
            color: #539A3F;
            margin-bottom: 8px;
        }
        .model-sub {
            font-size: 0.85rem;
            color: #d4a373;
            font-weight: 600;
            margin-bottom: 16px;
            text-transform: uppercase;
        }
        .model-desc {
            color: #4a5b44;
            margin-bottom: 20px;
            font-size: 0.95rem;
        }
        .model-list {
            list-style: none;
            margin-bottom: 20px;
        }
        .model-list li {
            padding: 6px 0;
            border-bottom: 1px solid #eaeadc;
            font-size: 0.9rem;
            color: #5a6b52;
        }
        .model-list li strong {
            color: #2c3e2f;
        }
        .quote {
            font-style: italic;
            color: #6b7a62;
            font-size: 0.85rem;
            border-left: 3px solid #d4a373;
            padding-left: 16px;
            margin-top: 16px;
        }

        /* Value-Added Table Style (Cards) */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
            margin-bottom: 48px;
        }
        .service-card {
            background: white;
            border-radius: 24px;
            padding: 24px;
            box-shadow: 0 4px 16px rgba(0,0,0,0.04);
            transition: all 0.2s;
        }
        .service-card:hover {
            transform: translateY(-4px);
        }
        .service-icon {
            font-size: 2.2rem;
            margin-bottom: 16px;
        }
        .service-card h4 {
            font-size: 1.2rem;
            font-weight: 700;
            color: #2c3e2f;
            margin-bottom: 12px;
        }
        .service-card p {
            color: #5a6b52;
            font-size: 0.9rem;
            line-height: 1.5;
        }

        /* Note Section */
        .note-box {
            background: #eef5e9;
            border-radius: 28px;
            padding: 32px 36px;
            margin: 48px 0 24px;
            text-align: center;
        }
        .note-box p {
            color: #2c3e2f;
            font-size: 1rem;
            margin-bottom: 12px;
        }
        .note-box .important {
            font-weight: 600;
            color: #539A3F;
        }

        /* CTA */
        .cta {
            text-align: center;
            margin-top: 40px;
        }
        .btn {
            display: inline-block;
            background: #539A3F;
            color: white;
            padding: 12px 32px;
            border-radius: 40px;
            font-weight: 600;
            text-decoration: none;
            transition: background 0.2s;
        }
        .btn:hover {
            background: #3d732d;
        }

        .footer {
            text-align: center;
            margin-top: 64px;
            padding-top: 32px;
            border-top: 1px solid #e0e0d4;
            color: #6b7a62;
            font-size: 0.85rem;
        }

        @media (max-width: 640px) {
            .container {
                padding: 40px 20px;
            }
            .header h1 {
                font-size: 1.8rem;
            }
            .model-title {
                font-size: 1.3rem;
            }
            .note-box {
                padding: 24px 20px;
            }
        }
    