
        /* Modern Industrial Minimalist Style for Higher Conversion */
        .pdp-container {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            color: #2D3748;
            line-height: 1.6;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        .pdp-header {
            text-align: center;
            margin-bottom: 40px;
        }
        .pdp-title {
            font-size: 28px;
            color: #1A365D;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 8px;
        }
        .pdp-subtitle {
            font-size: 16px;
            color: #718096;
            font-style: italic;
        }
        .pdp-section-title {
            font-size: 20px;
            color: #2B6CB0;
            border-left: 4px solid #2B6CB0;
            padding-left: 12px;
            margin-top: 40px;
            margin-bottom: 16px;
            font-weight: 600;
        }
        .pdp-text {
            font-size: 15px;
            color: #4A5568;
            margin-bottom: 20px;
        }
        .pdp-list {
            padding-left: 20px;
            margin-bottom: 24px;
        }
        .pdp-list li {
            font-size: 15px;
            margin-bottom: 10px;
            color: #4A5568;
        }
        .pdp-list strong {
            color: #1A365D;
        }
        /* Image Placeholder Blocks */
        .pdp-image-box {
            background-color: #F7FAFC;
            border: 2px dashed #CBD5E0;
            border-radius: 6px;
            padding: 30px 20px;
            text-align: center;
            margin: 25px 0;
        }
        .pdp-image-title {
            font-size: 14px;
            font-weight: bold;
            color: #2B6CB0;
            margin-bottom: 6px;
            text-transform: uppercase;
        }
        .pdp-image-desc {
            font-size: 13px;
            color: #718096;
        }
        /* Tech Spec Table Style */
        .pdp-table-wrapper {
            overflow-x: auto;
            margin: 20px 0;
        }
        .pdp-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 14px;
            text-align: left;
        }
        .pdp-table th {
            background-color: #EDF2F7;
            color: #1A365D;
            font-weight: 600;
            padding: 12px 16px;
            border: 1px solid #E2E8F0;
        }
        .pdp-table td {
            padding: 12px 16px;
            border: 1px solid #E2E8F0;
            color: #4A5568;
        }
        .pdp-table tr:nth-child(even) {
            background-color: #F8FAFC;
        }
        /* Call to Action Box */
        .pdp-cta-box {
            background-color: #F7FAFC;
            border-top: 4px solid #1A365D;
            border-radius: 4px;
            padding: 30px;
            margin-top: 50px;
            text-align: center;
            box-shadow: 0 1px 3px rgba(0,0,0,0.05);
        }
        .pdp-cta-title {
            font-size: 22px;
            color: #1A365D;
            font-weight: 700;
            margin-bottom: 12px;
        }
        .pdp-cta-btn {
            display: inline-block;
            background-color: #1A365D;
            color: #FFFFFF;
            text-decoration: none;
            padding: 14px 32px;
            font-size: 16px;
            font-weight: bold;
            border-radius: 4px;
            margin-top: 15px;
            transition: background-color 0.2s ease;
        }
        .pdp-cta-btn:hover {
            background-color: #2B6CB0;
        }
    