   * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: 'Helvetica', sans-serif;
      background-color: #f8f8f8;
      color: #365f91;
    }

    .section-title {
      text-align: center;
      margin: 0 auto;
      max-width: 60%;
      font-size: 30px;
      color: #365f91;            /* + */
      margin-top: 40px;
      margin-bottom: 20px
    }
    
    .section-title h1 {
      font-size: 3.2rem;
      padding: 20px;
    } 
    
    .section-title h2 {
      font-size: 1.8rem;
      /*color: #444;*/
    }   
    
    .section-title h4 {
      font-size: 2.4rem;
    } 
    

    /*.container {*/
    .container-projects {
      max-width: 1440px;         /* Ограничение ширины контейнера 1200px */
      margin: 0 auto;            /* Центрирование */
      padding: 40px 20px;
    }

    .product-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
    }

    .product-card {
      position: relative; /* нужно для ::after */  /* 6 */
      background-color: #fff;
      border: 1px solid #ccc;
      border-radius: 12px;
      text-decoration: none;
      color: #5f497a;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      transition: transform 0.2s, box-shadow 0.2s;
      flex: 1 1 30%;
      max-width: 360px;
      min-width: 200px;
      display: flex;
      flex-direction: column;
      align-items: center;
      overflow: hidden;
      z-index: 0; /* важно, чтобы ::after был ниже, но сам card выше других */
    }

    .product-card:hover {
      transform: scale(1.02);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    }

    .product-card img {
      width: 100%;
      height: 220px;
      object-fit: cover;
    }

    .product-card p {
      font-size: 22px;
      margin: 16px 0;
    }
    
    /* Оверлей при наведении */
    .product-card::after {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 100%;
      height: 100%;
      background: rgba(255, 105, 180, 0.15); /* нежно-розовый оттенок */
      opacity: 0;
      transition: opacity 0.3s ease;
      z-index: 1;
      pointer-events: none; /* чтобы не мешать клику */
    }
    
    /* Показываем оверлей при наведении */
    .product-card:hover::after {
      opacity: 1;
    }

    /* Контент выше фона, но под оверлеем */
    .product-card img, .product-card p {
      position: relative;
      z-index: 1;
    }
    


    /* --- Адаптивные стили --- */
    @media (max-width: 1024px) {
      .product-card {
        flex: 1 1 calc(45% - 20px);
      }
    }

    @media (max-width: 768px) {
      .product-grid {
        justify-content: center;
      }
      .product-card {
        flex: 1 1 200px;
      }
      .section-title {
        max-width: 100%;
      }      
      .text-blocks {
        max-width: 100%;
	    margin: 0;
      }
    }

    @media (max-width: 480px) {
      .product-card {
        flex: 1 1 100%;
      }
      .section-title {
        max-width: 100%;
      }
      .text-blocks {
        max-width: 100%;
	    margin: 0;
      }
    }
    
    @media (min-width: 1200px) {
      .product-card {
        flex: 1 1 32%;
        max-width: 400px;
      }
      .product-card img {
        height: 260px;
      }
    }