    .product-hero {
      background: linear-gradient(rgba(44, 62, 80, 0.75), rgba(44, 62, 80, 0.75)),
                  url('images/dpf-work.jpg') center/cover no-repeat;
      color: white;
      padding: 80px 0;
      position: relative;
      z-index: 1;
    }

    .product-hero h1 {
      font-size: 48px;
      font-weight: 700;
      margin-bottom: 20px;
      letter-spacing: -0.5px;
      position: relative;
      z-index: 10;
    }

    .product-hero p {
      font-size: 20px;
      opacity: 0.95;
      font-weight: 300;
      position: relative;
      z-index: 10;
    }

    .product-hero .container {
      position: relative;
      z-index: 10;
    }

    .product-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      margin-bottom: 48px;
    }

    .product-image {
      width: 100%;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .product-info h2 {
      font-size: 32px;
      margin-bottom: 20px;
      color: #2c3e50;
      font-weight: 700;
    }

    .product-info h3 {
      font-size: 24px;
      margin: 32px 0 16px;
      color: #2c3e50;
      font-weight: 600;
    }

    .product-info p {
      line-height: 1.8;
      margin-bottom: 16px;
      color: #555;
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 32px;
      margin-top: 48px;
    }

    .feature-card {
      background: white;
      padding: 40px 32px;
      border-radius: 8px;
      box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
      border: 1px solid #e8e8e8;
      transition: all 0.3s ease, opacity 0.8s ease, transform 0.8s ease;
      position: relative;
      opacity: 0;
      transform: translateY(40px);
    }

    .feature-card.animate-in {
      opacity: 1;
      transform: translateY(0);
    }

    .feature-card.animate-in:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    }

    .animate-section {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }

    .animate-section.animate-in {
      opacity: 1;
      transform: translateY(0);
    }

    .specs-table {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }

    .specs-table.animate-in {
      opacity: 1;
      transform: translateY(0);
    }

    .feature-number {
      font-size: 48px;
      font-weight: 800;
      color: #337ab7;
      margin-bottom: 16px;
      line-height: 1;
      opacity: 0.8;
    }

    .feature-card h3 {
      font-size: 22px;
      margin-bottom: 16px;
      color: #2c3e50;
      font-weight: 700;
      line-height: 1.4;
    }

    .feature-card p {
      color: #666;
      line-height: 1.7;
      font-size: 15px;
    }

    .quality-section {
      background: #f8f9fa;
      padding: 64px 0;
      margin: 64px 0;
    }

    .quality-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 32px;
      margin-top: 40px;
    }

    .quality-item {
      background: white;
      padding: 32px;
      border-radius: 8px;
      border-left: 4px solid #337ab7;
    }

    .quality-item h4 {
      font-size: 20px;
      margin-bottom: 12px;
      color: #2c3e50;
      font-weight: 700;
    }

    .quality-item p {
      color: #666;
      line-height: 1.7;
    }

    .comparison-section {
      background: white;
      padding: 48px;
      border-radius: 8px;
      box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
      margin: 48px 0;
    }

    .comparison-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
      margin-top: 32px;
    }

    .comparison-item {
      padding: 24px;
      border-radius: 8px;
      border: 2px solid #e0e0e0;
    }

    .comparison-item.highlight {
      border-color: #337ab7;
      background: #f8f9fa;
    }

    .comparison-item h4 {
      font-size: 22px;
      margin-bottom: 16px;
      color: #2c3e50;
      font-weight: 700;
    }

    .comparison-item ul {
      list-style: none;
      padding: 0;
    }

    .comparison-item li {
      padding: 8px 0;
      color: #666;
      line-height: 1.6;
    }

    .specs-table {
      width: 100%;
      border-collapse: collapse;
      margin: 32px 0;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .specs-table th,
    .specs-table td {
      padding: 18px 20px;
      border: 1px solid #e0e0e0;
      text-align: left;
    }

    .specs-table th {
      background-color: #2c3e50;
      color: white;
      font-weight: 600;
      width: 200px;
      min-width: 120px;
    }

    .specs-table td {
      background-color: white;
    }

    .specs-table tr:hover td {
      background-color: #f8f9fa;
    }

    @media (max-width: 768px) {
      .product-hero h1 {
        font-size: 36px;
      }

      .product-content {
        grid-template-columns: 1fr;
        gap: 24px;
      }

      .features-grid {
        grid-template-columns: 1fr;
      }

      .quality-grid {
        grid-template-columns: 1fr;
      }

      .comparison-grid {
        grid-template-columns: 1fr;
      }

      /* スペックテーブルのモバイル対応 */
      .specs-table {
        width: 100%;
        border: none;
        box-shadow: none;
      }

      .specs-table tr {
        display: block;
        margin-bottom: 16px;
        border: 1px solid #ddd;
        border-radius: 6px;
        background: #fff;
      }

      .specs-table th {
        display: block;
        width: 100%;
        padding: 12px 16px;
        background: #f5f5f5;
        color: #2c3e50;
        font-size: 13px;
        font-weight: 700;
        border: none;
        border-bottom: 2px solid #337ab7;
        text-align: left;
      }

      .specs-table td {
        display: block;
        width: 100%;
        padding: 14px 16px;
        background: #fff;
        color: #333;
        font-size: 14px;
        line-height: 1.7;
        border: none;
        text-align: left;
      }

      /* Process Section */
      [style*="padding: 56px 48px"] {
        padding: 32px 24px !important;
      }

      [style*="margin-bottom: 40px"] {
        margin-bottom: 28px !important;
      }

      [style*="padding-bottom: 40px"] {
        padding-bottom: 28px !important;
      }

      /* Before/After Images Section */
      [style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
      }

      /* Process Steps - モバイルで1カラムに */
      [style*="grid-template-columns: 1fr 1fr"][style*="align-items: center"] {
        grid-template-columns: 1fr !important;
      }

      /* モバイルで画像の順序をリセット */
      [style*="order: 1"],
      [style*="order: 2"] {
        order: 0 !important;
      }

      /* 対応車両セクション - 4カラムグリッド */
      [style*="grid-template-columns: repeat(4, 1fr)"] {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
      }

      /* 対応車両セクション - 3カラムグリッド */
      [style*="grid-template-columns: repeat(3, 1fr)"] {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
      }

      /* 対応車両セクション - 画像高さ調整 */
      img[style*="height: 240px"] {
        height: 200px !important;
      }

      /* タイトル調整 */
      h2[style*="font-size: 42px"] {
        font-size: 28px !important;
      }

      h3[style*="font-size: 20px"] {
        font-size: 18px !important;
      }

      h4[style*="font-size: 16px"] {
        font-size: 15px !important;
      }

      /* テキストサイズ調整 */
      p[style*="font-size: 17px"] {
        font-size: 16px !important;
      }
    }
