.elementor-207 .elementor-element.elementor-element-16ba8eba{--display:flex;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-207 .elementor-element.elementor-element-404637dd{--display:flex;}.elementor-207 .elementor-element.elementor-element-7043bb01{--spacer-size:50px;}/* Start custom CSS for html, class: .elementor-element-234b6a91 */.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 20px;
    padding: 20px;
text-align:center;
  }
  .product-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    color: #333;
    padding: 15px 10px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    transition: box-shadow 0.2s, transform 0.2s;
    background: #fff;
  }
  .product-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    transform: translateY(-3px);
  }
  .product-card svg {
    width: 80px;
    height: 80px;
    margin-bottom: 10px;
  }
  .product-card span {
    font-size: 13px;
    line-height: 1.4;
    font-weight: 500;
  }
  .section-title {
    grid-column: 1 / -1;
    font-size: 18px;
    font-weight: bold;
    color: #1a5276;
    border-bottom: 2px solid #1a5276;
    padding-bottom: 6px;
    margin-top: 10px;
  }
  @media (max-width: 480px) {
    .products-grid {
      grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
      gap: 12px;
    }
    .product-card svg { width: 60px; height: 60px; }
    .product-card span { font-size: 11px; }
  }/* End custom CSS */