
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
            background-color: #f9fafb;
            padding: 32px 20px;
            margin: 0;
            color: #1f2937;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: white;
            border-radius: 28px;
            box-shadow: 0 12px 30px rgba(0,0,0,0.05);
            padding: 32px 28px 48px;
        }
        p, li {
            font-size: 16px;
            line-height: 1.6;
            color: #2c3e4f;
        }
        .issue-list {
            margin: 16px 0 10px 26px;
            list-style: none;
            padding-left: 0;
        }
        .issue-list li {
            margin: 10px 0;
            padding-left: 28px;
            position: relative;
        }
        .issue-list li::before {
            content: "✗";
            position: absolute;
            left: 0;
            color: #dc2626;
            font-weight: bold;
            font-size: 18px;
        }
        .production-stats {
            display: flex;
            gap: 20px;
            margin: 20px 0 16px;
            flex-wrap: wrap;
        }
        .stat-item {
            flex: 1;
            min-width: 180px;
            background: #f8fafc;
            border-radius: 20px;
            padding: 18px 16px;
            text-align: center;
            border: 1px solid #e5e9f0;
        }
        .stat-number {
            font-size: 28px;
            font-weight: 800;
            color: #007BFF;
            line-height: 1.2;
        }
        .stat-label {
            font-size: 14px;
            color: #4b5563;
            margin-top: 8px;
        }
        .photo-gallery {
            display: flex;
            gap: 24px;
            margin: 24px 0 16px;
            flex-wrap: wrap;
        }
        .photo-card {
            flex: 1;
            min-width: 240px;
            background: #ffffff;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
            border: 1px solid #eef2ff;
            transition: transform 0.2s ease;
        }
        .photo-card:hover {
            transform: translateY(-4px);
        }
        .photo-card img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            display: block;
            cursor: pointer;
        }
        .photo-caption {
            padding: 16px;
            text-align: center;
            font-weight: 500;
            color: #1e3a8a;
            background: #f8fafc;
            font-size: 15px;
            border-top: 1px solid #eef2ff;
        }
        .contact-card {
            background: linear-gradient(135deg, #f0f9ff 0%, #e6f0fa 100%);
            border-radius: 28px;
            padding: 28px 24px;
            margin: 24px 0 16px;
            border: 1px solid #d9e8f2;
        }
        .contact-row {
            display: flex;
            align-items: center;
            gap: 16px;
            margin: 18px 0;
            flex-wrap: wrap;
        }
        .contact-icon {
            width: 44px;
            font-size: 28px;
            text-align: center;
        }
        .contact-detail {
            flex: 1;
            font-size: 16px;
            word-break: break-all;
        }
        .contact-detail a {
            color: #007BFF;
            text-decoration: none;
            font-weight: 500;
        }
        .contact-detail a:hover {
            text-decoration: underline;
        }
        .btn {
            display: inline-block;
            padding: 14px 32px;
            background-color: #007BFF;
            color: #fff;
            text-decoration: none;
            font-size: 16px;
            font-weight: 600;
            border-radius: 40px;
            transition: background 0.2s ease;
            border: none;
            cursor: pointer;
            text-align: center;
        }
        .btn:hover {
            background-color: #0056b3;
        }
        .cta-box {
            text-align: center;
            background: #ffffff;
            border-radius: 28px;
            margin-top: 28px;
            padding: 28px 24px;
            border: 1px solid #e5e7eb;
            box-shadow: 0 8px 20px rgba(0,0,0,0.03);
        }
        .cta-box p {
            margin-bottom: 20px;
            font-size: 18px;
            font-weight: 500;
        }
        .lightbox-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            z-index: 99999;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            transition: opacity 0.3s ease;
            visibility: hidden;
        }
        .lightbox-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        .lightbox-content {
            max-width: 90%;
            max-height: 90%;
        }
        .lightbox-content img {
            max-width: 100%;
            max-height: 90vh;
            object-fit: contain;
            border-radius: 8px;
            box-shadow: 0 0 30px rgba(0,0,0,0.3);
        }
        .close-lightbox {
            position: absolute;
            top: 20px;
            right: 40px;
            color: white;
            font-size: 40px;
            font-weight: bold;
            cursor: pointer;
            z-index: 100000;
        }
        .close-lightbox:hover {
            color: #ccc;
        }
        .section-card {
            background: #ffffff;
            border-radius: 20px;
            margin-bottom: 28px;
            padding: 0 0 4px;
        }
        .badge-icon {
            font-size: 26px;
            font-weight: 500;
            background: #eef2ff;
            display: inline-block;
            width: 48px;
            height: 48px;
            line-height: 48px;
            text-align: center;
            border-radius: 32px;
            margin-right: 14px;
            color: #1e3a8a;
        }
        .flex-title {
            display: flex;
            align-items: center;
            margin: 0 0 14px 0;
        }
        .flex-title h4 {
            font-size: 22px;
            font-weight: 700;
            color: #0f172a;
            margin: 0;
        }
        @media (max-width: 700px) {
            .container {
                padding: 20px 16px 32px;
            }
            .btn {
                font-size: 14px;
                padding: 10px 20px;
            }
            .flex-title h4 {
                font-size: 20px;
            }
            .badge-icon {
                width: 40px;
                height: 40px;
                line-height: 40px;
                font-size: 22px;
                margin-right: 10px;
            }
            .photo-gallery {
                flex-direction: column;
                gap: 16px;
            }
            .contact-row {
                gap: 12px;
            }
            .production-stats {
                flex-direction: column;
                gap: 12px;
            }
            .stat-number {
                font-size: 24px;
            }
        }
    