.elementor-4568 .elementor-element.elementor-element-0f9cee3{--display:flex;}body.elementor-page-4568:not(.elementor-motion-effects-element-type-background), body.elementor-page-4568 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#11193D;}/* Start custom CSS for html, class: .elementor-element-d2eb5b2 */.product-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.product-box {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  padding: 20px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.product-box img {
  width: 80px;
  height: auto;
 margin-left: 20px; 
  margin-right: 20px;

}

.product-content h3 {
  margin: 0;
  font-size: 18px;
  font-weight: bold;
  color: #222;
}

.product-content a {
  display: inline-block;
  margin-top: 8px;
  text-decoration: none;
  color: #555;
  font-size: 14px;
  font-weight: bold;
}

.product-content a:hover {
  color: #0073e6;
}
@media (max-width: 768px) {
  .product-container {
    grid-template-columns: 1fr;
  }
}/* End custom CSS */