/* Scoped styles for tool only */
        .title-converter-wrapper {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #f8f9fa;
            padding: 40px 0;
        }
        
        .title-converter-wrapper .tool-container {
            max-width: 900px;
            margin: 0 auto;
            background: white;
            border-radius: 12px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            padding: 40px;
        }
        
        .title-converter-wrapper .tool-header {
            text-align: center;
            margin-bottom: 30px;
        }
        
        .title-converter-wrapper .tool-header h1 {
            color: #2c3e50;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        .title-converter-wrapper .tool-header p {
            color: #6c757d;
            font-size: 1.1rem;
        }
        
        .title-converter-wrapper .conversion-options {
            margin-bottom: 25px;
        }
        
        .title-converter-wrapper .btn-conversion {
            background-color: #ff6a00;
            border: 2px solid #ff6a00;
            color: white;
            padding: 12px 24px;
            margin: 5px;
            border-radius: 6px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .title-converter-wrapper .btn-conversion:hover {
            background-color: #e65f00;
            border-color: #e65f00;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(255, 106, 0, 0.3);
        }
        
        .title-converter-wrapper .btn-conversion.active {
            background-color: #cc5500;
            border-color: #cc5500;
        }
        
        .title-converter-wrapper .text-area-container {
            margin-bottom: 20px;
        }
        
        .title-converter-wrapper .form-control {
            border: 2px solid #dee2e6;
            border-radius: 8px;
            font-size: 1rem;
            padding: 15px;
            transition: border-color 0.3s ease;
        }
        
        .title-converter-wrapper .form-control:focus {
            border-color: #ff6a00;
            box-shadow: 0 0 0 0.2rem rgba(255, 106, 0, 0.25);
        }
        
        .title-converter-wrapper .action-buttons {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            margin-bottom: 20px;
        }
        
        .title-converter-wrapper .btn-action {
            background-color: white;
            border: 2px solid #ff6a00;
            color: #ff6a00;
            padding: 10px 20px;
            border-radius: 6px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .title-converter-wrapper .btn-action:hover {
            background-color: #ff6a00;
            color: white;
        }
        
        .title-converter-wrapper .stats-bar {
            background-color: #f8f9fa;
            border-radius: 8px;
            padding: 15px;
            margin-bottom: 20px;
        }
        
        .title-converter-wrapper .stat-item {
            display: inline-block;
            margin-right: 20px;
            color: #495057;
        }
        
        .title-converter-wrapper .stat-item strong {
            color: #ff6a00;
        }
        
        .title-converter-wrapper .style-guide-info {
            background-color: #fff9f5;
            border-left: 4px solid #ff6a00;
            padding: 15px;
            margin-top: 20px;
            border-radius: 4px;
        }
        
        .title-converter-wrapper .blog-footer {
            margin-top: 50px;
            padding-top: 30px;
            border-top: 2px solid #dee2e6;
        }
        
        .title-converter-wrapper .blog-footer h3 {
            color: #2c3e50;
            font-size: 1.8rem;
            margin-bottom: 20px;
        }
        
        .title-converter-wrapper .blog-content {
            color: #495057;
            line-height: 1.8;
        }
        
        .title-converter-wrapper .blog-content h4 {
            color: #ff6a00;
            margin-top: 25px;
            margin-bottom: 15px;
            font-size: 1.3rem;
        }
        
        .title-converter-wrapper .blog-content ul {
            margin-left: 20px;
        }
        
        .title-converter-wrapper .blog-content ul li {
            margin-bottom: 8px;
        }
        
        @media (max-width: 768px) {
            .title-converter-wrapper .tool-container {
                padding: 20px;
            }
            
            .title-converter-wrapper .tool-header h1 {
                font-size: 1.8rem;
            }
            
            .title-converter-wrapper .btn-conversion {
                padding: 10px 16px;
                font-size: 0.9rem;
            }
        }