    .product-hero {
      background: linear-gradient(rgba(44, 62, 80, 0.75), rgba(44, 62, 80, 0.75)),
                  url('images/glass-hero.png') 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;
    }

    .product-info ul {
      margin: 16px 0;
      padding-left: 24px;
    }

    .product-info li {
      line-height: 1.8;
      margin-bottom: 12px;
      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);
    }

    .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;
    }

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

    .process-card {
      background: white;
      padding: 32px 24px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.08);
      text-align: center;
      transition: all 0.3s ease;
    }

    .process-card:hover {
      box-shadow: 0 4px 16px rgba(0,0,0,0.12);
      transform: translateY(-4px);
    }

    .process-number {
      width: 60px;
      height: 60px;
      background: #337ab7;
      color: white;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      font-weight: 700;
      margin: 0 auto 16px;
    }

    .process-card h4 {
      font-size: 18px;
      font-weight: 700;
      color: #2c3e50;
      margin-bottom: 12px;
    }

    .process-card p {
      color: #666;
      font-size: 14px;
      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);
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }

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

    .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;
    }

    .note-box {
      background: #f8f9fa;
      border-left: 4px solid #337ab7;
      padding: 20px 24px;
      margin: 24px 0;
      border-radius: 4px;
    }

    .note-box p {
      margin: 0;
      color: #555;
      line-height: 1.7;
    }

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

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

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

      .process-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;
      }
    }
