 .container-card {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            max-width: 1200px;
            flex-direction: row;
            flex-wrap: wrap;
            justify-content: space-around;
        }

        .card {
            background-color: #ffffff;
            border: 1px solid #ddd;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            padding: 16px;
            width: calc(33.333% - 20px);
            text-align: center;
        }

        .container.text-center.istat .info-box {
            cursor: pointer;
        }

        .card h3 {
            margin: 0;
            color: #333;
        }

        .hidden-section {
            display: none;
            /* İlk başta gizlenmiş */
            opacity: 0;
            transition: opacity 0.5s ease;
            /* Yumuşak geçiş için animasyon */
        }

        .fade-in {
            opacity: 1;
        }


        @media (max-width: 768px) {
            .card {
                width: calc(50% - 20px);
            }
        }

        @media (max-width: 480px) {
            .card {
                width: 100%;
            }
        }
   
        .header1 {
            text-align: center;
            padding: 20px;
        }

        .header1 h2 {
            color: #ff6b00;
            font-size: 85px;
            margin-bottom: 10px;
            font-family: 'omnesbold';
        }

        .header1 h3 {
            color: #dc3545;
            font-weight: bold;
            font-size: 64px;
            margin-bottom: 20px;
            font-family: 'omnesbold';
        }

        .header1 h4 {
            color: #000000;
            font-weight: bold;
            font-size: 34px;
            margin-bottom: 20px;
            font-family: 'omnesbold';
        }

        .content {
            text-align: center;
            padding: 15px;
        }

        

        .products .product-card {
            background-color: #f8f9fa;
            border: 1px solid #ddd;
            border-radius: 10px;
            padding: 15px;
            text-align: center;
        }

        .products .product-card img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
        }

        .products .product-card h5 {
            margin-top: 10px;
            font-size: 1.2rem;
            color: #333;
        }

        .text-center.my-4.konsept1 {
            margin-bottom: 0 !important;
        }
        
        
        /* Galeri Ana Tasarım (Masaüstü İçin) */
.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Masaüstünde 3 sütun düzeni */
    gap: 10px; /* Elemanlar arası boşluk */
    margin-top: 20px;
    justify-items: center; /* Elemanları ortalar */
}

/* Galeri Elemanları */
.gallery a {
    display: block;
    border: 2px solid #ccc;
    border-radius: 5px;
    overflow: hidden;
    transition: 0.3s;
}

.gallery img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 5px;
}

/* Mobil için Ayarlar */
@media (max-width: 768px) {
    .gallery {
        grid-template-columns: repeat(2, 1fr); /* Mobilde 2 sütun düzeni */
        gap: 15px; /* Elemanlar arası daha geniş boşluk */
    }

    .gallery img {
        max-height: 200px; /* Görseller daha büyük */
        object-fit: cover; /* Görsellerin düzgün görünmesini sağlar */
    }
}


        h4.ozel-menuler {
            font-size: 24px;
            background: #f7dbb4;
            display: inline-block;
            padding: 5px 40px;
            border-radius: 50px;
            color: #bd3938;
        }
        
        
        
        /* Menü Barı Ana Tasarım */
.menu-bar {
    background-color: #dc3545;
    padding: 10px 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap; /* Mobilde satırların kaymasını sağlar */
    gap: 10px; /* Elemanlar arasında boşluk */
    text-align: center;
}

/* Menü Barındaki Elemanlar */
.menu-bar div {
    flex: 1 1 calc(25% - 10px); /* Masaüstü: Dört sütun düzeni */
    max-width: 150px; /* Maksimum genişlik */
    text-align: center;
    padding: 10px; /* Eleman çevresindeki boşluk */
}

.menu-bar img {
    height: 70px; /* Görsel boyutu */
    max-width: 100%;
    margin: 0 auto;
    display: block;
}

.menu-bar span {
    color: white;
    font-weight: bold;
    display: block;
    font-size: 16px;
    line-height: 1.2;
    margin-top: 8px;
}

/* Mobil Görünüm için Ayarlar */
@media (max-width: 768px) {
    .menu-bar div {
        flex: 1 1 calc(50% - 10px); /* Mobilde iki sütun düzeni */
        max-width: 120px; /* Eleman boyutunu küçült */
    }

    .menu-bar img {
        height: 50px; /* Görsellerin boyutunu küçült */
    }

    .menu-bar span {
        font-size: 14px; /* Yazı boyutunu küçült */
    }
}


