/* ============================================
   STYLE.CSS - TEMİZ VE OPTİMİZE EDİLMİŞ (FINAL)
   ============================================ */

:root {
    /* Renk Paleti - KIRMIZI TEMALI */
    --primary-red: #DB0000;
    --secondary-red: #B30000;
    --accent-red: #FF0000;
    --dark-red: #990000;
    --light-red: #FFE5E5;
    --lighter-red: #FFF5F5;
    --white: #ffffff;
    /* Özel Logo Rengi */
    --logo-color: #E53A24;
    
    /* Gri Tonları */
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-900: #0f172a;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08);
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    
    /* Transitions */
    --transition-normal: 0.3s ease;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    line-height: 1.6;
    color: var(--gray-700);
    background: white;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

/* ============================================
   NAVBAR - YENİDEN DÜZENLENMİŞ
   ============================================ */
.navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all var(--transition-normal);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    gap: 2rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.5rem;
    gap: 2px;
    min-width: max-content;
}

.logo-img {
    height: 40px;
    width: auto;
}

/* LOGO TEXT */
.logo-text {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #E53A24;
    white-space: nowrap;
}

.nav-logo {
    margin-right: 3rem;
}

/* Nav Menu */
.nav-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
    gap: 2rem;
}

.nav-menu-left {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    margin-left: 1.5rem;
}

.nav-link {
    text-decoration: none;
    color: var(--gray-600);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
    font-size: 0.95rem;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--primary-red);
    background: var(--light-red);
}

.nav-link.active {
    color: var(--primary-red);
    font-weight: 600;
}

/* Desktop Actions */
.nav-actions-desktop {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: auto;
}

.language-switcher select {
    padding: 8px 12px;
    border: 1px solid var(--gray-300);
    border-radius: 6px;
    background: white;
    color: var(--dark-red);
    font-size: 14px;
    cursor: pointer;
    min-width: 80px;
}

/* Butonlar */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-decoration: none;
    white-space: nowrap;
}

.btn-login {
    background: transparent;
    color: var(--gray-700);
    border: 1.5px solid var(--gray-300);
}

.btn-login:hover {
    color: var(--primary-red);
    border-color: var(--primary-red);
    transform: translateY(-1px);
}

.btn-register {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-register:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

.navbar-username {
    margin-right: 1rem;
    color: var(--gray-700);
    font-weight: 400;
    white-space: nowrap;
    text-decoration: none;
    transition: color 0.3s ease;
}

.navbar-username:hover {
    color: var(--primary-red) !important;
    cursor: pointer;
}

/* ============================================
   BANNER & HERO
   ============================================ */
.banner-header {
    height: 320px;
    margin-top: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.banner-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(219, 0, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 0, 0, 0.1) 0%, transparent 50%);
    z-index: 1;
}

/* Ana sayfa banner */
.main-banner {
    background: url('../images/banner.svg') no-repeat center center;
    background-size: cover;
}

/* Özel Sayfa Bannerları */
.docx-banner { background: url('../images/banner/pdftoword_banner.svg') no-repeat center center !important; background-size: cover !important; }
.image-banner { background: url('../images/banner/pdftopng_banner.svg') no-repeat center center !important; background-size: cover !important; }
.txt-banner { background: url('../images/banner/pdftotxt_banner.svg') no-repeat center center !important; background-size: cover !important; }
.excel-banner { background: url('../images/banner/pdftoxlsx_banner.svg') no-repeat center center !important; background-size: cover !important; }
.compress-banner { background: url('../images/banner/pdfcompression_banner.svg') no-repeat center center !important; background-size: cover !important; }
.split-banner { background: url('../images/banner/pdftosplitting_banner.svg') no-repeat center center !important; background-size: cover !important; }
.merge-banner { background: url('../images/banner/pdftomerge_banner.svg') no-repeat center center !important; background-size: cover !important; }
.edit-banner { background: url('../images/banner/pdfedit_banner.svg') no-repeat center center !important; background-size: cover !important; }
.login-banner { background: url('../images/banner/login_banner.svg') no-repeat center center !important; background-size: cover !important; }
.register-banner { background: url('../images/banner/register_banner.svg') no-repeat center center !important; background-size: cover !important; }

.hero {
    text-align: center;
    color: white;
    padding: 0 2rem;
    max-width: 800px;
    z-index: 2;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero p {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

/* ============================================
   CARDS SECTION
   ============================================ */
.cards-container {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-100);
    transition: all var(--transition-normal);
    text-decoration: none;
    color: inherit;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--light-red);
}

.card-icon {
    margin-bottom: 1.5rem;
}

.card-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.card-description {
    color: var(--gray-600);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: url('../images/footer-banner.svg') no-repeat center center;
    background-size: cover;
    color: white;
    padding: 0;
    min-height: 413px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 2.5rem 0 1.5rem;
    text-align: center;
}

.footer-section {
    max-width: 500px;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 35px;
}

.footer-logo-text {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
}

.footer-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.footer-links {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all var(--transition-normal);
    padding: 0.4rem 0.8rem;
    display: block;
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 0.9rem;
}

.footer-links li a:hover {
    color: white;
    transform: translateY(-1px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding: 1.5rem 0;
    margin-top: auto;
    width: 100%;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-align: center;
}

.footer-bottom-content p {
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    font-size: 0.85rem;
}

.footer-bottom-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color var(--transition-normal);
    font-size: 0.8rem;
}

.footer-bottom-links a:hover {
    color: white;
}

/* ============================================
   HATA SAYFALARI (404 / 500)
   ============================================ */
.error-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    margin-top: 40px;
}

.error-content {
    text-align: center;
    max-width: 600px;
    padding: 60px 40px;
    background: white;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-200);
    animation: slideUp 0.5s ease-out;
}

.error-icon {
    margin-bottom: 30px;
    color: var(--primary-red);
    background: var(--light-red);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.error-icon svg {
    width: 50px;
    height: 50px;
}

.error-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 15px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.error-text {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-bottom: 40px;
    line-height: 1.6;
}

.btn-error-home {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.btn-error-home:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(219, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .error-title { font-size: 2rem; }
    .error-content { padding: 40px 20px; }
}

/* ============================================
   PROFESYONEL MOBİL MENÜ STİLLERİ (DÜZELTİLMİŞ)
   ============================================ */

/* Masaüstü gizlemeleri */
.nav-actions-mobile { display: none; }
.navbar-username-mobile { display: none; }

/* 1. Hamburger Menü Butonu (3 Çizgi) */
.hamburger-menu {
    display: none; /* Masaüstünde gizli */
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px; /* Toplam yükseklik */
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10002; /* En üstte olsun */
    margin-left: auto; /* Sağa yasla */
}

/* Çizgilerin Görünümü (Görünürlük Sorunu Çözümü) */
.hamburger-menu span {
    display: block;
    width: 100%;
    height: 3px; /* Kalın çizgi */
    background-color: #1e293b; /* KOYU RENK - Görünürlük için */
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

/* Hamburger Animasyonu (X şekline dönüş) */
.hamburger-menu.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.hamburger-menu.active span:nth-child(2) { opacity: 0; transform: translateX(-10px); }
.hamburger-menu.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* 2. Menü Kapsayıcısı (Overlay - Arka Plan) */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Hafif karartma */
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px); /* Modern blur efekti */
    -webkit-backdrop-filter: blur(4px);
}

/* Aktif Olduğunda Görünür Yap */
.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* 3. Menü İçeriği (Beyaz Alan) - SAĞDAN AÇILIR */
.mobile-menu-content {
    position: fixed;
    top: 0;
    right: 0; /* SAĞA SABİT */
    width: 85%;
    max-width: 320px;
    height: 100%;
    background: #ffffff;
    z-index: 9999;
    
    /* Başlangıçta sağa gizle (Ekran dışı) */
    transform: translateX(100%); 
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

/* Aktif Olduğunda İçeri Kaydır (0 pozisyonu) */
.mobile-menu-overlay.active .mobile-menu-content {
    transform: translateX(0);
}

/* Menü Header (Kullanıcı Bilgisi) */
.mobile-menu-header {
    padding: 25px 20px;
    background: linear-gradient(135deg, var(--light-red) 0%, #fff 100%);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-user-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-avatar {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--primary-red);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 10px rgba(219, 0, 0, 0.2);
    font-weight: bold;
    font-size: 1.2rem;
}

.mobile-user-details { display: flex; flex-direction: column; }
.mobile-username { font-weight: 700; color: var(--gray-900); font-size: 15px; }
.mobile-email { font-size: 12px; color: var(--gray-500); margin-top: 2px; }

.mobile-menu-close {
    background: var(--gray-100);
    border: none;
    padding: 8px;
    border-radius: 8px;
    color: var(--gray-600);
    cursor: pointer;
    transition: all 0.2s;
}

/* Menü Öğeleri */
.mobile-menu-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-menu-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    text-decoration: none;
    color: var(--gray-700);
    border-radius: 12px;
    background: transparent;
    transition: all 0.2s ease;
    border: none;
    width: 100%;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
}

.mobile-menu-item .item-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-menu-item .item-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
    transition: color 0.2s;
}

/* Hover ve Active Durumları */
.mobile-menu-item:hover, 
.mobile-menu-item.active {
    background: var(--gray-50);
    color: var(--primary-red);
}

.mobile-menu-item:hover .item-icon, 
.mobile-menu-item.active .item-icon {
    color: var(--primary-red);
}

.mobile-menu-item.highlight {
    background: var(--gradient-primary);
    color: white !important;
    box-shadow: 0 4px 12px rgba(219, 0, 0, 0.2);
}

.mobile-menu-item.highlight .item-icon { color: white !important; }

/* Submenu (Accordion) */
.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--gray-50);
    border-radius: 0 0 12px 12px;
    margin-top: -8px;
}

.mobile-submenu.open {
    max-height: 600px;
    padding-bottom: 10px;
}

.mobile-submenu-item {
    display: flex;
    align-items: center;
    padding: 12px 16px 12px 48px; /* Soldan girintili */
    text-decoration: none;
    color: var(--gray-600);
    font-size: 14px;
    transition: all 0.2s;
}

.mobile-submenu-item:hover { color: var(--primary-red); background: rgba(0,0,0,0.02); }

.mobile-tool-icon {
    width: 24px;
    height: 24px;
    margin-right: 12px;
    object-fit: contain;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.mobile-submenu-item:hover .mobile-tool-icon { opacity: 1; }

.accordion-trigger .chevron-icon {
    transition: transform 0.3s ease;
    color: var(--gray-400);
}

.accordion-trigger.open .chevron-icon { transform: rotate(180deg); color: var(--primary-red); }
.accordion-trigger.open { background: var(--gray-50); border-radius: 12px 12px 0 0; }

.mobile-divider {
    height: 1px;
    background: var(--gray-100);
    margin: 10px 0;
}

.mobile-menu-item.small {
    font-size: 14px;
    padding: 10px 16px;
    color: var(--gray-500);
}

.language-selector { position: relative; }
.mobile-language-select {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

/* Mobil Menü Footer (Logo ve Sürüm) */
.mobile-menu-footer {
    padding: 20px;
    border-top: 1px solid var(--gray-100);
    background: #f8fafc;
    margin-top: auto; /* En alta sabitle */
}

.mobile-app-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.mobile-app-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.mobile-logo-img {
    height: 35px !important;
    width: auto !important;
    object-fit: contain;
    max-width: 150px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.mobile-logo-img:hover { opacity: 1; }

.mobile-app-version {
    font-size: 0.75rem;
    color: var(--gray-400);
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* 4. MEDYA SORGUSU - Tablet ve Mobil İçin (992px altı) */
@media (max-width: 992px) {
    .hamburger-menu {
        display: flex; /* Mobilde butonu GÖSTER */
    }
    
    .nav-menu {
        display: none; /* Desktop menüyü GİZLE */
    }
    
    .nav-actions-desktop {
        display: none; /* Desktop butonları GİZLE */
    }
    
    .nav-logo img {
        height: 35px; /* Mobilde logo boyutunu ayarla */
    }
    
    .nav-actions-mobile {
        display: flex;
        align-items: center;
        gap: 12px;
    }
    
    .navbar-username-mobile {
        display: inline;
        font-size: 14px;
        color: var(--gray-700);
        font-weight: 600;
    }
}

/* ============================================
   REKLAM ALANLARI (YENİ DÜZEN)
   ============================================ */

/* Ana Kapsayıcı (Esnek Kutu) */
.layout-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    max-width: 1600px;
    margin: 0 auto;
    padding-top: 20px;
    width: 100%;
}

/* Yan Reklamlar (Skyscraper) */
.ad-sidebar {
    width: 160px;
    min-width: 160px;
    flex-shrink: 0;
    display: none; /* Varsayılan gizli (mobil) */
    margin-top: 20px;
    position: sticky;
    top: 90px;
}

/* Orta İçerik Alanı */
.main-content {
    flex: 1;
    max-width: 1200px;
    width: 100%;
}

/* Yatay Reklamlar (Alt Banner vb.) */
.ad-container {
    width: 100%;
    max-width: 100%;
    margin: 30px auto;
    text-align: center;
    overflow: hidden;
    min-height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Localhost Test Kutuları */
.local-ad-placeholder {
    width: 100%;
    height: 100px;
    background: repeating-linear-gradient(45deg, #f1f5f9, #f1f5f9 10px, #e2e8f0 10px, #e2e8f0 20px);
    border: 2px dashed #cbd5e1;
    border-radius: 8px;
    color: #64748b;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.local-ad-skyscraper {
    width: 160px;
    height: 600px;
    background: repeating-linear-gradient(45deg, #f1f5f9, #f1f5f9 10px, #e2e8f0 10px, #e2e8f0 20px);
    border: 2px dashed #cbd5e1;
    border-radius: 8px;
    color: #64748b;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    gap: 10px;
}

/* --- RESPONSIVE REKLAM KURALLARI --- */

/* Büyük ekranlarda (Desktop) yan reklamları göster */
@media (min-width: 1400px) {
    .ad-sidebar {
        display: block; /* Sadece 1400px üzeri genişlikte göster */
    }
}

/* Mobilde reklamlar taşmasın */
@media (max-width: 768px) {
    .ad-container {
        margin: 20px 0;
    }
    .layout-wrapper {
        display: block; /* Mobilde flex yerine blok */
    }
}

.ocr-banner {
    /* Sadece arka plan görselini tanımlıyoruz, boyut ve yerleşimi .banner-header sınıfından alacak */
    background: url('../images/banner/pdfocr_banner.svg') no-repeat center center !important; 
    background-size: cover !important;
    background-color: #1e293b; /* Resim yüklenene kadar görünecek renk */
}

@media (max-width: 768px) {
    .ocr-banner {
        /* tools.css içindeki .banner-header yüksekliği ile uyumlu */
        height: 200px !important; 
    }
}

@media (max-width: 480px) {
    .ocr-banner {
        height: 150px !important;
    }
}