        /* Hero Konteyner Ayarları */
        /* --- HERO BANNER OPTİMİZASYONU --- */
        .hero-banner {
            width: 100%;
            height: 40vh;
            /* Masaüstü yüksekliği */
            position: relative;
            overflow: visible;
            /* Logonun aşağı taşması için hayati */
            margin-bottom: 0 !important;
            /* Boşluğu tamamen öldürdük */
            background: #000;
        }

        .hero-image-container {
            width: 100%;
            height: 100%;
            position: relative;
        }

        .hero-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            opacity: 0.8;
            /* Yazıların patlaması için hafif karartma */
        }

        /* Hero Banner Temel Konteynırı */
        .hero-banner {
            width: 100%;
            height: 40vh;
            position: relative;
            overflow: visible;
            /* Logonun dışarı taşması için hayati */
            margin-bottom: 100px;
            /* Alttaki içerikle mesafe (Logo taştığı için geniş tuttuk) */
        }

        .hero-image-container {
            width: 100%;
            height: 100%;
            position: relative;
        }

        .hero-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* HTML LOGONUN KONUMLANDIRILMASI */
        .hero-logo-wrapper {
            position: absolute;
            /* Logoyu yukarı aldık: Resmin alt sınırından biraz içeride başlasın */
            bottom: 25%;
            left: 50%;
            transform: translateX(-50%);
            z-index: 99;

            /* GERÇEK GLASSMORPHISM (CAM EFEKTİ) */
            /* Saydamlığı 0.95'ten 0.2'ye çektik ki arkası görünsün */
            background: rgba(255, 255, 255, 0.276) !important;
            backdrop-filter: blur(15px) saturate(150%);
            /* Arkadaki renkleri canlandırır */
            -webkit-backdrop-filter: blur(15px) saturate(150%);
            /* Safari desteği */

            padding: 1.2rem 2.5rem;
            border-radius: 12px;
            box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
            /* Çerçevenin çok parlaması cam hissini artırır */
            border: 1px solid rgba(255, 255, 255, 0.4);

            display: flex;
            align-items: center;
            white-space: nowrap;
        }

        .hero-logo-wrapper .logo {
            display: flex;
            align-items: center;
            gap: 1.2rem;
        }

        .hero-logo-wrapper .logo-icon {
            background-color: #ff6b00;
            color: #fff;
            width: 55px;
            height: 55px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            font-weight: 900;
            border-radius: 6px;
        }

        .hero-logo-wrapper .logo-text {
            color: #103b7b;
            font-weight: 800;
            line-height: 1.1;
            font-size: 1.4rem;
            text-align: left;
            /* Yazının altına hafif gölge ki cam üzerinde patlasın */
            text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
        }

        .hero-logo-wrapper .logo-text span {
            color: #1a1a1a;
            /* Daha koyu yaptık ki beyaz camda okunsun */
            font-weight: 600;
        }

        .hero-logo-wrapper .logo-text small {
            display: block;
            font-size: 0.7rem;
            color: #666;
            letter-spacing: 0.5px;
            margin-top: 4px;
            text-transform: uppercase;
            font-weight: 600;
        }

        /* =========================================================
   RESPONSIVE BREAKPOINTS
   ========================================================= */

        /* --- 1. TABLET VE KÜÇÜK EKRANLAR (1024px altı) --- */
        @media screen and (max-width: 1024px) {
            .hero-banner {
                height: 35vh;
            }

            .hero-logo-wrapper {
                padding: 1rem 2rem;
            }

            .hero-logo-wrapper .logo-text {
                font-size: 1.2rem;
            }
        }

        /* --- 2. SAMSUNG, iPHONE VE GENEL MOBİL (768px altı) --- */
        @media screen and (max-width: 768px) {
            .hero-banner {
                height: 30vh;
                /* Mobilde banner'ı daraltıyoruz */
            }

            .hero-logo-wrapper {
                bottom: -25px;
                /* Mobilde taşma miktarını azalttık */
                padding: 0.8rem 1.2rem;
                width: 90%;
                /* Mobilde ekranı daha iyi kaplasın */
                justify-content: center;
            }

            .hero-logo-wrapper .logo {
                gap: 0.8rem;
            }

            .hero-logo-wrapper .logo-icon {
                width: 45px;
                height: 45px;
                font-size: 1.4rem;
            }

            .hero-logo-wrapper .logo-text {
                font-size: 1rem;
            }

            .hero-logo-wrapper .logo-text small {
                font-size: 0.55rem;
            }
        }

        /* --- 3. ÇOK KÜÇÜK CİHAZLAR (400px altı) --- */
        @media screen and (max-width: 400px) {
            .hero-logo-wrapper {
                padding: 0.6rem 1rem;
            }

            .hero-logo-wrapper .logo-text {
                font-size: 0.9rem;
            }
        }

        @media screen and (max-width: 768px) {
            .hero-logo-wrapper {
                bottom: 15px;
                /* Mobilde de resmin içine girdi */
                padding: 0.8rem 1.2rem;
                width: 85%;
            }
        }