   /* ====== Base & Reset Styles ====== */
        * {
          margin: 0;
          padding: 0;
          box-sizing: border-box;
        }

        html {
          scroll-behavior: smooth;
        }

        body {
          font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
          line-height: 1.6;
          color: #333;
          background-color: #fff;
        }

        /* ====== Typography ====== */
        h1, h2, h3, h4 {
          font-weight: 600;
          line-height: 1.3;
          color: #2c3e50;
        }

        h1 {
          font-size: 2.2rem;
          margin-bottom: 1.5rem;
        }

        h2 {
          font-size: 1.8rem;
          margin: 2rem 0 1.2rem;
          padding-bottom: 0.5rem;
          border-bottom: 2px solid #4CAF50;
        }

        h3 {
          font-size: 1.4rem;
          margin: 1.8rem 0 1rem;
        }

        p {
          margin-bottom: 1.2rem;
          color: #555;
        }

        /* ====== Layout & Structure ====== */
        .container {
          max-width: 1200px;
          margin: 0 auto;
          padding: 0 20px;
        }

     /* ===== Breadcrumb ===== */
.breadcrumb {
  padding: 1rem;
  font-size: 0.875rem;
  text-align: center;
  background-color: #f1f1f1;
  color: #666;
  margin: 5rem auto;
  max-width: var(--container-width);
  border-radius: var(--border-radius);
}

.breadcrumb a {
  color: var(--secondary-color);
}

.breadcrumb a:hover {
  text-decoration: underline;
}
     

        /* ====== Product Display ====== */
        .product-image {
          max-width: 100%;
          width: 40%;
          height: auto;
          display: block;
          margin: 0 auto 30px;
          border-radius: 8px;
          box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }

        .product-title {
          font-size: 1.8rem;
          margin-bottom: 1rem;
          color: #222;
        }

        .product-description {
          font-size: 1.1rem;
          line-height: 1.7;
          margin-bottom: 1.5rem;
        }

        .date {
          font-size: 0.9rem;
          color: #777;
          margin-bottom: 1.5rem;
          display: block;
        }

        /* ====== SEO Content Section ====== */
        .seo-content {
          background-color: #f8f9fa;
          border-radius: 8px;
          padding: 2.5rem;
          margin: 3rem 0;
          box-shadow: 0 2px 15px rgba(0,0,0,0.05);
        }

        .seo-content h2 {
          color: #2c3e50;
          border-bottom: none;
          position: relative;
          padding-left: 15px;
        }

        .seo-content h2:before {
          content: "";
          position: absolute;
          left: 0;
          top: 0;
          height: 100%;
          width: 5px;
          background-color: #f17720;
          border-radius: 3px;
        }

        .seo-content ul {
          margin: 1.5rem 0;
          padding-left: 1.5rem;
          list-style-type: none;
        }

        .seo-content li {
          margin-bottom: 0.8rem;
          padding-left: 1.8rem;
          position: relative;
          line-height: 1.6;
        }

        .seo-content li:before {
          content: "✓";
          position: absolute;
          left: 0;
          color: #f17720;
          font-weight: bold;
        }

        /* ====== Tags Section ====== */
       .tags-section {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
  padding-top: 1.5rem;
  border-top-width: 1px;
  border-top-style: solid;
}

.tags-title {
  font-weight: 600;
  margin-right: 10px;
}

.tags {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  display: inline-block;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 12px;
  padding-right: 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  text-decoration: none;
  transition-property: all;
  transition-duration: 0.3s;
}

.tag:hover {
}
       

        /* ====== Responsive Design ====== */
        @media (max-width: 992px) {
          .container {
            padding: 0 30px;
          }
        }

        @media (max-width: 768px) {
          h1 {
            font-size: 1.8rem;
          }
          
          h2 {
            font-size: 1.5rem;
          }
          
          .seo-content {
            padding: 1.8rem;
          }
          
          .product-image {
            margin-bottom: 20px;
          }
        }

        @media (max-width: 576px) {
          .container {
            padding: 0 15px;
          }
          
          .seo-content {
            padding: 1.5rem;
          }
          
          .tags {
            gap: 6px;
          }
          
          .tag {
            padding: 4px 10px;
            font-size: 0.8rem;
          }
        }

        /* ====== Print Styles ====== */
        @media print {
          body {
            font-size: 12pt;
            line-height: 1.5;
            color: #000;
          }
          
          .container {
            max-width: 100%;
            padding: 0;
          }
          
          .seo-content {
            page-break-inside: avoid;
            background: none;
            box-shadow: none;
            padding: 0;
            margin: 1.5cm 0;
          }
          
          a {
            text-decoration: none;
            color: #000;
          }
          
          .breadcrumb, .tags-section {
            display: none;
          }
        }