  .services-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
    max-width: 100%;
    justify-content: center;
  }

  .services-items {
    flex: 1 1 55%;
    max-width: 55%;
    height: 340px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: flex-start;
    overflow: hidden;
  }

  .services-items article.product-card {
    width: 48%;
    max-width: 240px;
    height: 100%;
    box-sizing: border-box;
    padding: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgb(0 0 0 / 0.1);
    transition: box-shadow 0.3s ease;
  }

  .services-items article.product-card:hover {
    box-shadow: 0 6px 20px rgb(0 0 0 / 0.15);
  }

  .services-items article.product-card img {
    width: 100%;
    max-height: 180px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
  }

  .services-items article.product-card h3 {
    margin: 10px 0 5px 0;
    flex-shrink: 0;
    font-size: 1rem;
    color: #222;
  }

  .services-items article.product-card p {
    color: #0f9d58;
    font-weight: bold;
    flex-shrink: 0;
    font-size: 1.1rem;
  }

  .services-advertising {
    flex: 1 1 40%;
    max-width: 40%;
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: flex-start;
  }

  .services-advertising div {
    text-align: center;
  }

  .services-advertising img {
    width: 100%;
    border-radius: 12px;
    max-height: 280px;
    object-fit: cover;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
  }

  .services-advertising img:hover {
    transform: scale(1.02);
  }

  @media (max-width: 900px) {
    .services-container {
      flex-direction: column;
      margin-top: 20px;
    }
    .services-items,
    .services-advertising {
      max-width: 100%;
      flex: 1 1 100%;
      height: auto;
    }
    .services-items article.product-card {
      width: 48%;
      max-width: none;
      height: auto;
    }
  }
  @media (max-width: 480px) {
    .services-items article.product-card {
      width: 100%;
    }
  }

