
        /* Kurumsal Kimlik Sayfası Özel Stilleri */
        .custom-breadcrumb {
            background-color: #f5f7fa;
            padding: 25px 0;
            margin-bottom: 40px;
        }
        
        .breadcrumb-title {
            font-size: 2rem;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 10px;
        }
        
        .breadcrumb {
            background-color: transparent;
            padding: 0;
            margin-bottom: 0;
            font-size: 1.1rem;
        }
        
        .breadcrumb-item a {
            color: #3498db;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
        }
        
        .breadcrumb-item a:hover {
            color: #2980b9;
            text-decoration: underline;
        }
        
        .breadcrumb-item.active {
            color: #7f8c8d;
        }
        
        .breadcrumb-item + .breadcrumb-item::before {
            content: "→";
            color: #95a5a6;
            font-size: 1.2rem;
            padding: 0 10px;
        }
        
        /* İçerik Alanı */
        .content-title {
            font-size: 2rem;
            font-weight: 600;
            color: #2a4365;
        }
        
        .content-actions .btn {
            min-width: 40px;
            height: 36px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }
        
        .btn-zoom span {
            line-height: 1;
        }
        
        #zoomable-content {
            font-size: 1.05rem;
            line-height: 1.8;
            transition: font-size 0.3s ease;
        }
        
        #zoomable-content h2 {
            font-size: 1.5rem;
            color: #2a4365;
            margin-top: 1.5rem;
            margin-bottom: 1rem;
        }
        
        /* Paylaşım Butonları */
        .content-share {
            background-color: #f8fafc;
            padding: 1.5rem;
            border-radius: 0.5rem;
        }
        
        .share-title {
            font-size: 1.1rem;
            font-weight: 500;
            color: #4a5568;
        }
        
        .btn-share {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.5rem 1rem;
            font-size: 0.9rem;
            border-radius: 0.3rem;
            color: white;
            transition: all 0.2s;
            white-space: nowrap;
        }
        
        .btn-facebook { background-color: #3b5998; }
        .btn-twitter { background-color: #1da1f2; }
        .btn-linkedin { background-color: #0077b5; }
        .btn-whatsapp { background-color: #25d366; }
        
        .btn-share:hover {
            opacity: 0.9;
            transform: translateY(-2px);
        }
        
        /* Kurumsal Kimlik Özel Stilleri */
        .corporate-identity-card {
            border: none;
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            margin-bottom: 25px;
        }
        
        .corporate-identity-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        }
        
        .corporate-identity-header {
            background: linear-gradient(135deg, #2a4365 0%, #3498db 100%);
            color: white;
            padding: 20px;
            position: relative;
            cursor: pointer;
        }
        
        .corporate-identity-header h5 {
            margin: 0;
            font-weight: 600;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .corporate-identity-header .bi {
            transition: transform 0.3s ease;
        }
        
        .corporate-identity-header.collapsed .bi-chevron-down {
            transform: rotate(-90deg);
        }
        
        .corporate-identity-body {
            padding: 0;
            background-color: #fff;
        }
        
        .corporate-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
            border-bottom: 1px solid #f1f1f1;
            transition: background-color 0.2s;
        }
        
        .corporate-item:last-child {
            border-bottom: none;
        }
        
        .corporate-item:hover {
            background-color: #f9f9f9;
        }
        
        .corporate-item-info {
            flex: 1;
        }
        
        .corporate-item-title {
            font-weight: 500;
            color: #2c3e50;
            margin-bottom: 5px;
        }
        
        .corporate-item-desc {
            font-size: 0.9rem;
            color: #7f8c8d;
        }
        
        .corporate-item-action .btn {
            padding: 8px 15px;
            border-radius: 6px;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .loading-spinner {
            display: flex;
            justify-content: center;
            padding: 40px 0;
        }
        
        .spinner-border {
            width: 3rem;
            height: 3rem;
            color: #3498db;
        }
        
        .error-message {
            background-color: #ffeaea;
            color: #e74c3c;
            padding: 20px;
            border-radius: 8px;
            text-align: center;
            margin: 20px 0;
        }
        
        /* Kategori Filtre Butonları */
        .category-filter {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 30px;
        }
        
        .category-filter-btn {
            padding: 8px 20px;
            border: 2px solid #3498db;
            background: white;
            color: #3498db;
            border-radius: 30px;
            font-weight: 500;
            transition: all 0.3s;
        }
        
        .category-filter-btn:hover,
        .category-filter-btn.active {
            background: #3498db;
            color: white;
        }
        
        @media (max-width: 768px) {
            .corporate-item {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .corporate-item-action {
                margin-top: 10px;
                align-self: flex-end;
            }
            
            .category-filter {
                justify-content: center;
            }
        }