
.intro {
  text-align: center;

  max-width: auto;
  margin: 0 auto;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
/* Ürün tanıtım bölümü genel düzeni */
      .product-section {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        margin: 20px 0;
      }

      /* Her ürün kutusu */
      .product-item {
        width: calc(33.33% - 20px);
        margin: 0 10px 20px;
        text-align: center;
        background-color: #ffff;
        padding: 20px;
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);

        text-decoration: none; /* Tıklanabilir linkin altını çizmeyi kaldırır */
        transition: background-color 0.3s; /* Renk değişimi için geçiş efekti */
      }

      /* Ürün resmi */
      .product-item img {
        max-width: 100%;
        height: auto;
        opacity: 0;
      }

      /* Hover efekti */
      .product-item:hover {
        background-color: #e0e0e0; /* Hover sırasında arka plan rengini değiştirir */
      }
      /* Ürün açıklaması */
      .product-item p {
        color: #000; /* Siyah renk */
        margin-top: 15px;
         
        min-width: 100%;
       
        
        opacity: 0; /* Animasyon başlangıçta 0 olarak ayarlandı */
      }
      @media (max-width: 767px) {
        .product-section {
          flex-direction: column;
          align-items: center; /* Kutuları yatayda ortalar */
        }

        .product-item {
          width: 100%;
          margin: 0 0 20px; /* Sağ ve sol boşluğu kaldırır */
        }
      }
      /* Resimler ve metinler için genel animasyon */
      

      /* Resimler için özel animasyon */
      .product-image {
        animation: fadeIn 1s ease-in-out forwards;
      }

      /* Metinler için özel animasyon */
      .product-text {
        animation: fadeIn 1s ease-in-out forwards;
      }

      /* Animasyon tanımlamaları */
      @keyframes fadeIn {
        0% {
          opacity: 0;
        }
        100% {
          opacity: 1;
        }
      }
}

      .section {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        margin: 20px;
      }

      .item {
        width: calc(33.33% - 10px);
        display: flex;
        align-items: center;
        margin-bottom: 20px;
        padding: 20px;
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
        background-color: #fff;
      }

      .item-image {
        width: 100%; /* Divi tam genişlikte yapar */
        padding-right: 0; /* Gereksiz sağ boşluğu kaldırır */
        display: flex;
        align-items: stretch; /* Resmi kutu yüksekliği boyunca uzat */
        overflow: hidden; /* Resim taşmalarını engeller */
      }

      .item-image img {
        width: 100%; /* Resmi divin içine sığacak şekilde genişletir */
        height: 100%; /* Resmi divin içine sığacak şekilde yükseltir */
        object-fit: contain; /* Resmi div içerisine sığacak şekilde yerleştirir */
        max-width: 100%; /* Resmi orijinal boyutunda görüntülemek için */
        max-height: 100%; /* Resmi orijinal boyutunda görüntülemek için */
      }

      .item-content {
        width: 60%;
      }

    
      .item:nth-child(4) {
        width: 100%;
        text-align: center;
				
      }

      .item:nth-child(4) .item-image,
      .item:nth-child(4) .item-content {
        width: 100%;
         padding-right: 200px;
      }

      .item:nth-child(4) img {
				
        max-width: 50%; /* Resmin genişliğini düzeltilmiş boyuta çek */
        height: auto;
      }

      /* Mobilde alt alta sıralama */
      @media (max-width: 767px) {
        .item {
          width: 100%;
          flex-direction: column;
          align-items: flex-start;
          padding: 20px 10px;
        }

        .item-image {
          width: 100%;
          padding-right: 0;
          margin-bottom: 10px;
					
        }

        .item-content {
          width: 100%;
        }

        .item-image img {
          max-width: 100%; /* Resimlerin mobilde tam genişlikte görünmesi sağlandı */
          height: auto;
					  opacity: 0; 
        }
				 .item:nth-child(4) {
        width: 100%;
        text-align: center;
				
      }

      .item:nth-child(4) .item-image,
      .item:nth-child(4) .item-content {
        width: 100%;
         padding-right: 0px;
      }

      .item:nth-child(4) img {
				
        max-width: 100%; /* Resmin genişliğini düzeltilmiş boyuta çek */
        height: auto;
      }
      }

      /* Ekran büyüdüğünde resimlerin boyutunu ayarla */
      @media (min-width: 768px) {
        .item-image img {
          max-width: 80%; /* Resimlerin genişlikleri ekran boyutuna göre ayarlandı */
          height: auto;
					  
        }
      }