.elementor-11980 .elementor-element.elementor-element-279a23b{--spacer-size:50px;}/* Start custom CSS for text-editor, class: .elementor-element-5bdfcd05 */* {
      box-sizing: border-box;
    }
    body {
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 20px;
      background-color: #fafafa;
    }
    h1 {
      text-align: center;
      margin-bottom: 30px;
      margin-top: 15px;
    }
    /* Responsive grid using auto-fit and minmax */
    .grid-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
    }
    .grid-item {
      background-color: #fff;
      border: 1px solid #ddd;
      border-radius: 8px;
      text-align: center;
      padding: 30px 10px;
      box-shadow: 0 2px 4px rgba(0,0,0,0.1);
      transition: transform 0.2s ease, background-color 0.2s ease;
      text-decoration: none;
      color: inherit;
    }
    .grid-item:hover {
      background-color: #f0f0f0;
      transform: translateY(-5px);
    }
    .grid-item img {
      width: 50px;
      height: 50px;
      display: block;
      margin: 0 auto 10px;
    }
    .grid-item span {
      font-size: 1.1em;
      font-weight: bold;
    }
    @media (max-width: 400px) {
      .grid-item {
        padding: 20px 5px;
      }
      .grid-item img {
        width: 40px;
        height: 40px;
      }
      .grid-item span {
        font-size: 1em;
      }
    }/* End custom CSS */