.pro-led-icon-box {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

    /* Product Page Styles */
.pro-led-container {
  /* max-width: 1400px;
  margin: 0 auto; */
  /* padding: 0 20px; */
  color: #333;
}

.pro-led-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
              url('../images/4.avif') center/cover no-repeat;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  margin-bottom: 60px;
  border-radius: 12px;
  overflow: hidden;
}

.pro-led-hero-content {
  max-width: 800px;
  padding: 0 20px;
}

.pro-led-hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.pro-led-hero-subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
}

.pro-led-section {
  margin-bottom: 80px;
}

.pro-led-section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.pro-led-section-title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #27892e;
  position: relative;
  padding-bottom: 10px;
}

.pro-led-section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: #27892e;
}

.pro-led-flex-container {
  display: flex;
  gap: 40px;
  align-items: center;
}

.pro-led-text-content {
  flex: 1;
}

.pro-led-image-content {
  flex: 1;
  text-align: center;
}

.pro-led-tech-image {
  width: 100%;
  max-width: 500px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pro-led-image-caption {
  margin-top: 10px;
  font-style: italic;
  color: #666;
}

.pro-led-tech-specs {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.pro-led-spec-item {
  text-align: center;
  padding: 15px;
  background: #f5f5f5;
  border-radius: 8px;
  flex: 1;
}

.pro-led-spec-value {
  font-size: 1rem;
  font-weight: 700;
  color: #27892e;
}

.pro-led-spec-label {
  font-size: 0.9rem;
  color: #666;
}

.pro-led-text-content p {
  margin-bottom: 1rem;
  line-height: 1.6;
  font-size: 1.05rem;
  color: #555;
}

.pro-led-benefits {
  background-color: #f9f9f9;
  padding: 60px 0;
  border-radius: 12px;
}

.pro-led-intro-text {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #555;
  max-width: 800px;
}

.pro-led-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.pro-led-benefit-card {
  /* background: white; */
  padding: 30px;
  border-radius: 8px;
  /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); */
  transition: transform 0.3s ease;
}

.pro-led-benefit-card:hover {
  transform: translateY(-5px);
}

.pro-led-benefit-title {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #333;
}

.pro-led-benefit-desc {
  color: #666;
  line-height: 1.5;
}

.pro-led-features-list {
  columns: 2;
  column-gap: 40px;
  margin-top: 20px;
}

.pro-led-feature-item {
  margin-bottom: 12px;
  padding-left: 25px;
  position: relative;
  line-height: 1.5;
  color: #555;
  break-inside: avoid;
}

.pro-led-feature-item::before {
  content: '•';
  color: #27892e;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.pro-led-products {
  background-color: #fff;
}

.pro-led-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.pro-led-product-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  position: relative;
}

.pro-led-product-card:hover {
  transform: translateY(-5px);
}

.pro-led-product-image {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.pro-led-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.pro-led-product-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #27892e;
  color: white;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
}

.pro-led-product-card:hover .pro-led-product-image img {
  transform: scale(1.05);
}

.pro-led-product-content {
  padding: 25px;
}

.pro-led-product-title {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #333;
}

.pro-led-product-features {
  list-style-type: none;
  margin-bottom: 20px;
}

.pro-led-product-features li {
  margin-bottom: 8px;
  padding-left: 25px;
  position: relative;
  color: #555;
}

.pro-led-product-features li::before {
  content: '✓';
  color: #27892e;
  position: absolute;
  left: 0;
}

.pro-led-product-cta {
  color: #27892e;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: color 0.3s;
}

.pro-led-product-cta:hover {
  color: #7a2d8a;
}

.pro-led-product-cta::after {
  content: '→';
  margin-left: 5px;
  transition: transform 0.3s;
}

.pro-led-product-cta:hover::after {
  transform: translateX(3px);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .pro-led-flex-container {
    flex-direction: column;
  }
  
  .pro-led-image-content {
    order: -1;
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .pro-led-hero {
    height: 300px;
    margin-bottom: 40px;
  }
  
  .pro-led-hero-title {
    font-size: 2rem;
  }
  
  .pro-led-hero-subtitle {
    font-size: 1rem;
  }
  
  .pro-led-section-title {
    font-size: 1.7rem;
  }
  
  .pro-led-features-list {
    columns: 1;
  }
  
  .pro-led-products-grid {
    grid-template-columns: 1fr;
  }
  
  .pro-led-tech-specs {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .pro-led-hero {
    height: 250px;
  }
  
  .pro-led-hero-title {
    font-size: 1.7rem;
  }
  
  .pro-led-benefits-grid {
    grid-template-columns: 1fr;
  }
}




  /* Original CSS (kept intact) */
  .pro-led-section {
    padding: 20px 0;
  }
  .pro-led-products-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .pro-led-product-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    width: calc(50% - 10px);
  }
  .pro-led-product-image {
    position: relative;
  }
  .pro-led-product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ff5722;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
  }
  .pro-led-product-content {
    padding: 15px;
  }
  .pro-led-product-cta {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 15px;
    background: #27892e;
    color: white;
    text-decoration: none;
    border-radius: 4px;
  }

  /* Enhanced CSS (new version) */
  .pro-led-section-enhanced {
    padding: 60px 0;
    background-color: #f9f9f9;
  }
  .pro-led-section-inner-enhanced {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  .pro-led-section-title-enhanced {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
  }
  .pro-led-intro-text-enhanced {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
  }
  .pro-led-products-grid-enhanced {
    display: grid;
    padding: 70px;
    margin-top: -75px;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 30px;
    justify-content: center;
  }
  .pro-led-product-card-enhanced {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .pro-led-product-card-enhanced:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  }
  .pro-led-product-image-enhanced {
    position: relative;
    height: 400px;
    overflow: hidden;
  }
  .pro-led-product-img-enhanced {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  .pro-led-product-card-enhanced:hover .pro-led-product-img-enhanced {
    transform: scale(1.05);
  }
  .pro-led-product-badge-enhanced {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ff5722, #ff9800);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  }
  .pro-led-product-content-enhanced {
    padding: 25px;
  }
  .pro-led-product-title-enhanced {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #222;
  }
  .pro-led-product-features-enhanced {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  .pro-led-product-cta-enhanced {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(135deg, #27892e, #cce165);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0,123,255,0.2);
  }
  .pro-led-product-cta-enhanced:hover {
    background: linear-gradient(135deg, #cce165, #27892e);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,123,255,0.3);
  }

  @media (max-width: 768px) {
    .pro-led-products-grid-enhanced {
      grid-template-columns: 1fr;
    }
    .pro-led-section-title-enhanced {
      font-size: 2rem;
    }
    .pro-led-product-image-enhanced {
      height: 200px;
    }
  }



  /* <style> */
/* Enhanced Specifications Table Styles */
.pro-led-spec-heading {
  font-size: 1.3rem;
  color: #333;
  margin: 25px 0 15px;
  padding-bottom: 8px;
  border-bottom: 2px solid #27892e;
}

.pro-led-specs-table {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  margin-bottom: 30px;
}

.pro-led-spec-row {
  display: flex;
  padding: 12px 15px;
  border-bottom: 1px solid #f0f0f0;
  align-items: center;
}

.pro-led-spec-row:last-child {
  border-bottom: none;
}

.pro-led-spec-row:nth-child(even) {
  background-color: #f9f9f9;
}

.pro-led-spec-name {
  font-weight: 600;
  color: #555;
  width: 40%;
  padding-right: 15px;
}

.pro-led-spec-value {
  font-weight: 500;
  width: 60%;
}

@media (max-width: 768px) {
  .pro-led-spec-row {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 15px;
  }
  
  .pro-led-spec-name,
  .pro-led-spec-value {
    width: 100%;
    padding: 3px 0;
  font-size: 0.95rem;
  }
  
  .pro-led-spec-name {
    font-weight: 700;
    color: #27892e;
  }
}
/* </style> */